-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "membership-portal",
"version": "1.0.0",
"description": "The ACM Membership Portal",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon -L -e js -i node_modules -i .git -V index.js",
"test": "export TESTING=true && jest --config jest.config.json",
"lint": "prettier --write './**/*.js*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uclaacm/membership-portal.git"
},
"author": "Nikhil Kansal",
"contributors": [
{
"name": "Dylon Tjanaka",
"url": "https://dtjanaka.com"
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/uclaacm/membership-portal/issues"
},
"homepage": "https://github.com/uclaacm/membership-portal#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.15.2",
"continuation-local-storage": "^3.2.0",
"express": "^4.14.0",
"express-rate-limit": "^6.2.1",
"google-auth-library": "^7.9.2",
"handlebars": "^4.0.10",
"jsonwebtoken": "^7.3.0",
"morgan": "^1.7.0",
"node-gyp": "^4.0.0",
"node-pre-gyp": "^0.13.0",
"pg": "^8.0.3",
"sequelize": "^4.44.0",
"underscore": "^1.8.3",
"util": "^0.12.5",
"uuid": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz",
"winston": "^2.3.1"
},
"false": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"nodemon": "^3.1.7",
"supertest": "^6.2.4"
}
}