-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "v11-geckos-team-01",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "run-s setup:client setup:backend",
"setup:client": "cd client && npm install && cd ..",
"setup:backend": "cd backend && npm install && cd ..",
"build": "npm --silent --prefix client run build",
"dev": "concurrently npm:dev:*",
"dev:client": "npm --prefix client run start",
"dev:server": "npm --prefix backend run dev",
"eject": "react-scripts eject",
"heroku-postbuild": "cd ./client && npm run build",
"start": "npm --prefix backend run start",
"test": "run-s test:*",
"test:client": "cross-env CI=true npm --silent --prefix client run test",
"test:backend": "npm --silent --prefix backend run test"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material/react-card": "^0.15.0",
"axios": "^0.19.0",
"cross-env": "^6.0.3",
"faker": "^4.1.0",
"jshint": "^2.10.2",
"lodash.flow": "^3.5.0",
"moment": "^2.24.0",
"nodemon": "^2.0.2"
},
"devDependencies": {
"concurrently": "^4.1.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"npm-run-all": "^4.1.5",
"standard": "^14.1.0"
},
"engines": {
"node": "10.16.0",
"npm": "6.9.0"
}
}