-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
35 lines (35 loc) · 860 Bytes
/
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
{
"name": "03-react-twitter",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
"bcrypt": "^3.0.1",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"font-awesome": "^4.7.0",
"knex": "^0.15.2",
"lodash": "^4.17.11",
"material-ui": "^0.20.2",
"pg": "^7.4.3",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.5",
"sinon": "^6.3.4",
"validator": "^10.7.1"
},
"scripts": {
"client": "react-scripts start",
"server": "nodemon server/index.js",
"build": "react-scripts build",
"test": "cd server/; NODE_ENV=test mocha --exit",
"eject": "react-scripts eject"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"supertest": "^3.3.0"
}
}