-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.63 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
77
78
79
80
81
82
83
84
{
"name": "your-project",
"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",
"prod:build": "rimraf lib dist && babel src -d lib --ignore .test.js && cross-env NODE_ENV=production webpack --mode production",
"prod:start": "cross-env NODE_ENV=production heroku local",
"lint": "eslint src webpack.config.babel.js --ext .js,.jsx",
"test": "yarn lint && flow flow-typed && jest --coverage && codecov --token=51591c5a-a5f5-4da7-be43-6739d8bd6605",
"precommit": "yarn test",
"prepush": "yarn test && yarn prod:build",
"heroku-postbuild": "yarn prod:build"
},
"dependencies": {
"@babel/runtime": "^7.16.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "4.0.0-alpha.6",
"compression": "^1.7.4",
"express": "^4.17.1",
"immutable": "4.0.0-rc.2",
"isomorphic-fetch": "^3.0.0",
"jquery": "^3.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.5.3",
"react-jss": "^10.8.2",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.4.0",
"socket.io": "^4.3.1",
"socket.io-client": "^4.3.2",
"tether": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-flow-react-proptypes": "^26.0.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "1.7.0",
"fetch-mock": "^9.11.0",
"flow-bin": "^0.162.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"process": "^0.11.10",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"engines": {
"node": "12.22.4",
"yarn": "1.22.11"
}
}