-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "server",
"version": "0.0.0",
"private": true,
"proxy": "http://localhost:8080",
"jest": {
"testRegex": "__test__/*",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/__snapshots__/**",
"!**/client/**",
"!**/server/app.js",
"!**/coverage/**",
"!**/bot/fulfillment.js",
"!**/bot/messages.js",
"!**/bot/index.js",
"!**/bot/weekdayFulfillment.js",
"!**/bot/index.js",
"!**/passport.js",
"!**/db_connection.js",
"!**/generalFulfillment.js",
"!**/subjectFulfillment.js",
"!**/dialogflowSessionClient.js",
"!**/pusherSessionClient.js"
]
},
"scripts": {
"test:client": "cd client && npm test",
"start": "node ./server/bin/www",
"dev": "nodemon ./server/bin/www",
"client:init": "cd client && npm i",
"build": "cd client && npm run build",
"client:build": "cd client && npm run build",
"dev:both": "concurrently --kill-others-on-fail \"cd client && npm start\" \"nodemon ./server/bin/www\"",
"init:both": "npm i && npm run client:init",
"coverage": "codecov",
"test:coverage": "NODE_ENV=test jest --coverage --runInBand --detectOpenHandles --forceExit",
"test:client:coverage": "NODE_ENV=test cd client && npm run test:coverage",
"test": "NODE_ENV=test npm run test:coverage && npm run test:client:coverage",
"build:data": "node server/database/dummy_data/index.js",
"heroku-postbuild": "npm run client:init && npm run client:build"
},
"dependencies": {
"@google-cloud/storage": "^2.4.1",
"actions-on-google": "^2.5.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"codecov": "^3.1.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dialogflow": "^0.8.0",
"dialogflow-fulfillment": "^0.6.1",
"env2": "^2.2.2",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"mongoose": "^5.4.7",
"morgan": "~1.9.0",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pusher": "^2.2.0",
"supertest": "^3.4.2"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"nodemon": "^1.18.5"
}
}