-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "patient-app",
"version": "0.0.1",
"private": true,
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"mz": "^2.4.0",
"react-scripts": "0.2.1",
"supertest-as-promised": "^4.0.0"
},
"dependencies": {
"axios": "0.12.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"busboy": "^0.2.14",
"classnames": "^2.2.5",
"connect-busboy": "0.0.2",
"cors": "^2.8.1",
"dateformat": "^2.0.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"formidable": "^1.1.1",
"http-status": "^1.0.1",
"jsonwebtoken": "^7.3.0",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"pg": "^6.1.3",
"pg-hstore": "^2.3.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^5.0.3",
"react-router": "^2.6.1",
"react-sparklines": "^1.6.0",
"redux": "^3.6.0",
"redux-auth-wrapper": "^1.0.0",
"redux-form": "^6.5.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"sequelize": "^3.30.2",
"validator": "^7.0.0"
},
"scripts": {
"start": "react-scripts start",
"start:server": "node server",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "mocha test"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js",
"env": {
"mocha": true
},
"rules": {
"strict": 0
}
}
}