-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 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
63
64
65
66
67
68
{
"name": "gatech-swapr-server-node",
"version": "1.0.0",
"description": "node.js server for swapr",
"main": "index.js",
"private": true,
"dependencies": {
"bcrypt-nodejs": "~0.0.3",
"body-parser": "~1.18.2",
"connect-session-sequelize": "^4.1.0",
"ejs": "^2.5.8",
"email-validator": "^1.1.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"get-docker-secret": "^0.1.0",
"jsonwebtoken": "^8.2.0",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-cas": "^0.1.1",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"sequelize": "^4.37.5",
"serve-favicon": "^2.5.0",
"valid-url": "^1.0.9",
"winston": "^2.4.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.3",
"mocha": "^5.0.5",
"nodemon": "1.17.3",
"sequelize-cli": "^4.0.0",
"should": "^13.2.1",
"supertest": "^3.0.0",
"use-yarn": "^2.2.0",
"yarn": "^1.5.1"
},
"nodemonConfig": {
"ignore": [
"logs/*"
]
},
"lint-staged": {
"*.js": [
"eslint --no-ignore --fix",
"git add --force"
]
},
"scripts": {
"preinstall": "use-yarn || ( npm install --save-dev --no-scripts --no-save use-yarn && use-yarn )",
"test": "NODE_ENV=test mocha --exit",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"precommit": "lint-staged",
"start": "nodemon ./bin/www"
},
"repository": {
"type": "git",
"url": "https://github.com/GatechVIP/gatech-swapr-server-node.git"
},
"keywords": [
"swapr"
],
"author": "GT VIP SWAPR team",
"license": "ISC"
}