-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "step-tracking-app",
"version": "0.1.0",
"dependencies": {
"@date-io/date-fns": "^1.1.0",
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"@okta/okta-react": "^1.0.2",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"cors": "^2.8.4",
"date-fns": "^1.30.1",
"dotenv": "^6.0.0",
"epilogue": "^0.7.1",
"express": "^4.16.3",
"final-form": "^4.8.3",
"history-prop-types": "^2.5.2",
"lodash": "^4.17.10",
"lodash.orderby": "^4.6.0",
"moment": "^2.22.2",
"node-fetch": "^2.3.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-final-form": "^3.6.4",
"react-flip-move": "^3.0.3",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"recompose": "^0.27.1",
"sequelize": "^4.38.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"sqlite3": "^4.0.4"
},
"scripts": {
"start": "concurrently --kill-others-on-fail \"npm run watch:server\" \"npm run start:web\"",
"start:web": "react-scripts start",
"start:server": "babel-node src/server",
"watch:server": "nodemon --watch src/server --exec babel-node src/server",
"eslint": "eslint --ext .js --ext .json src/ --config .eslintrc.js --fix",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.2",
"concurrently": "^4.1.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.8",
"prettier": "^1.16.4"
}
}