-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
65
66
67
68
69
70
{
"name": "pecs-app",
"description": "Communication app for the verbally impaired",
"author": "James Vitaly Harding",
"version": "1.0.0",
"scripts": {
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"client": "cd client && npm run start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"engines": {
"node": "8.11.3",
"npm": "5.6.0"
},
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-plugin-import": "^1.8.0",
"bcrypt": "^3.0.0",
"chalk": "^2.4.1",
"classnames": "^2.2.6",
"connect-mongo": "^2.0.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.9",
"dotenv": "^6.0.0",
"es6-promise": "^4.2.4",
"eslint": "^5.3.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"hammerjs": "^2.0.8",
"history": "^4.7.2",
"http-errors": "~1.6.2",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.3.1",
"jwt-simple": "^0.5.1",
"list-react-files": "^0.2.0",
"loader": "^2.1.1",
"mongodb": "^3.1.3",
"mongoose": "^5.2.8",
"monk": "^6.0.5",
"morgan": "~1.9.0",
"node-pre-gyp": "^0.11.0",
"npm-run-all": "^4.1.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loading-components": "^1.1.12",
"react-modal": "^3.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^1.1.4",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"serve-index": "^1.9.1",
"serve-static": "^1.13.2",
"underscore": "^1.9.1",
"uploadcare": "^0.4.5"
},
"devDependencies": {
"concurrently": "^3.6.1",
"kexec": "^3.0.0",
"nodemon": "^1.18.3"
}
}