-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "bossy",
"version": "1.0.0",
"private": false,
"dependencies": {
"@reach/router": "^1.3.3",
"@babel/runtime": "^7.10.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.18.1",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"cors": "^2.8.4",
"cross-env": "^5.1.1",
"dotenv": "^8.2.0",
"express": "^4.15.4",
"history": "^4.10.1",
"helmet": "^3.21.3",
"mocha": "^6.1.3",
"mongoose": "^5.9.7",
"morgan": "^1.8.2",
"node-sass": "^4.13.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0",
"supertest": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"faker": "^4.1.0",
"nodemon": "^1.19.4",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "cross-env PORT=8000 mocha --watch",
"start-server": "nodemon --watch server.js --watch server/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}