-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.24 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
{
"name": "prime-solo-project",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000",
"dependencies": {
"axios": ">=0.18.1",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"moment": "^2.22.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-is": "^16.6.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.0.3",
"react-stripe-elements": "^2.0.1",
"react-table": "^6.8.6",
"react-toastify": "^4.4.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"stripe": "^6.13.0"
},
"scripts": {
"start": "node server/server.js",
"client": "react-scripts start",
"server": "nodemon --watch server server/server.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build"
},
"devDependencies": {
"nodemon": "^1.17.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}