-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·56 lines (56 loc) · 1.57 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
{
"name": "book-time-available-time",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"repository": "",
"license": "ISC",
"engines": {
"node": ">= 10.15.3"
},
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": ". ./development.env.sh && nodemon --inspect -e js,graphql,json .",
"dev:chrome-debug": ". ./development.env.sh && nodemon --inspect-brk -e js,graphql,json .",
"test": ". ./test.env.sh && NODE_ENV=test mocha ./test/**/*.test.js ./test/*.test.js",
"lint": "eslint ."
},
"keywords": [
"book-time-available-time"
],
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"apollo-server-express": "^2.18.2",
"app-root-path": "^2.2.1",
"await-to-js": "^2.1.1",
"axios": "^0.20.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"co": "^4.6.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.0",
"express-json-views": "git+https://github.com/quangdatpham/express-json-views.git#development/render-nested-json-structure",
"helmet": "^3.18.0",
"http-status": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-google-storage": "^1.3.0",
"mysql2": "^2.2.5",
"schemaglue": "^4.0.5",
"sequelize": "^6.3.5",
"socket.io": "^2.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"console.table": "^0.10.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"nodemon": "^2.0.4",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}