-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "js-scratch",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "yarn dev:start",
"dev:start": "nodemon -e js,jsx --ignore lib --ignore dist --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress",
"lint": "eslint src webpack.config.babel.js --ext .js,.jsx",
"test": "yarn lint && jest --coverage",
"precommit": "yarn test",
"prepush": "yarn test"
},
"browserslist": [
"> 1%"
],
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bootstrap": "4.0",
"compression": "^1.7.4",
"express": "^4.17.3",
"immutable": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"jquery": "^3.6.0",
"popper.js": "1.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-jss": "^10.9.0",
"react-redux": "^7.2.8",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.4.1",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tether": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.3",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"babel-plugin-flow-react-proptypes": "^26.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fetch-mock": "^9.11.0",
"flow-bin": "^0.176.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"process": "^0.11.10",
"redux-mock-store": "^1.5.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}