-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.01 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "half-dome",
"version": "0.2.7",
"private": true,
"description": "ACM UC Merced's Backend User Management API",
"keywords": [
"API",
"REST",
"GitHub Actions",
"coveralls",
"es8",
"eslint",
"express",
"generator",
"istanbul",
"mocha",
"pg",
"sequelize",
"node.js",
"nyc",
"passport"
],
"bugs": {
"url": "https://github.com/UCMercedACM/Half-Dome/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/UCMercedACM/Half-Dome.git"
},
"license": "MIT",
"author": {
"name": "ACM UC Merced",
"email": "[email protected]"
},
"main": "src/index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postcoverage": "opn coverage/lcov-report/index.html",
"dev": "nodemon ./src/index.js",
"lint": "eslint **/*.js --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint -- --fix",
"lint:watch": "yarn lint -- --watch",
"precommit": "yarn lint",
"start": "node ./src/index.js",
"serve": "node ./src/index.js NODE_ENV=production",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text -x '**/authProviders.js' -x '**/postgres.js' mocha --timeout 20000 --recursive $(find src -name '*test.js') --exit",
"test:integration": "cross-env NODE_ENV=test mocha --timeout 20000 src/api/tests/integration",
"test:unit": "cross-env NODE_ENV=test mocha src/api/tests/unit",
"test:watch": "cross-env NODE_ENV=test mocha --watch src/api/tests/unit",
"validate": "yarn lint && yarn test"
},
"dependencies": {
"@hapi/joi": "16",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"express-rate-limit": "^5.1.1",
"express-validation": "^3.0.2",
"helmet": "^3.22.0",
"http-status": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"moment-timezone": "^0.5.28",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sha3": "^2.1.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"apidoc": "^0.20.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"open-cli": "^6.0.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=12",
"yarn": ">=1.17"
}
}