-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "cah-backend",
"version": "0.1.51",
"description": "Backend for CAH.",
"main": "index.js",
"scripts": {
"setup": "git config core.hooksPath hooks",
"build": "gulp",
"dev": "npm run setup && node ./src/server.js",
"prod": "npm run setup && NODE_ENV='prod' node ./src/server.js",
"test": "npm run setup && nyc mocha './src/**/*.spec.js' --timeout 5000 --exit",
"lint": "npm run setup && eslint src",
"pre-commit": "npm run test && npm run lint"
},
"author": "IJustDev",
"license": "GNU GPLv3",
"dependencies": {
"@sentry/node": "^5.6.2",
"axios": "^0.19.0",
"cardcast-api": "^0.2.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"google-auth-library": "^5.2.1",
"mongo": "^0.1.0",
"mongodb": "^3.3.2",
"mongoose": "^5.7.0",
"password-hash": "^1.2.2",
"querystring": "^0.2.0",
"redis": "^2.8.0",
"uuid": "^3.3.2",
"ws": "^7.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"del": "^5.0.0",
"eslint": "^6.6.0",
"eslint-config-google": "^0.13.0",
"gulp": "^4.0.2",
"gulp-babel-minify": "^0.5.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}