-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.36 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "codecharacter-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"@sendgrid/mail": "6.3.1",
"bcrypt": "3.0.3",
"body-parser": "1.18.3",
"chai-http": "^4.2.1",
"cookie-parser": "^1.4.3",
"cors": "2.8.5",
"elo-rank": "^1.0.3",
"express": "4.16.4",
"express-session": "1.15.6",
"express-validator": "^5.3.1",
"moment": "^2.24.0",
"mysql2": "1.6.4",
"passport": "0.4.0",
"passport-local": "1.0.0",
"randomstring": "1.1.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sequelize": "4.42.0",
"shelljs": "^0.8.3",
"simple-git": "^1.107.0",
"socket.io": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"husky": "1.2.1",
"mocha": "^5.2.0",
"nodemon": "1.18.9",
"sequelize-cli": "5.4.0",
"superagent": "4.1.0",
"supertest": "3.4.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"scripts": {
"lint": "eslint .",
"start": "nodemon app.js",
"pretest": "./node_modules/.bin/sequelize db:migrate --env=test --migrations-path api/migrations --models-path api/models --config api/config/database.json && ./node_modules/.bin/sequelize db:seed:all --env=test --seeders-path api/seeders --migrations-path api/migrations --models-path api/models --config api/config/database.json",
"posttest": "./node_modules/.bin/sequelize db:migrate:undo:all --env=test --migrations-path api/migrations --models-path api/models --config api/config/database.json",
"test": "mocha --exit --timeout 10000",
"seed": "./node_modules/.bin/sequelize db:seed:all --migrations-path api/migrations --models-path api/models --seeders-path api/seeders --config api/config/database.json",
"migrate": "./node_modules/.bin/sequelize db:migrate --migrations-path api/migrations --models-path api/models --config api/config/database.json",
"undo-migrate": "./node_modules/.bin/sequelize db:migrate:undo:all --migrations-path api/migrations --models-path api/models --config api/config/database.json",
"docker": "sh start.sh"
},
"author": "",
"license": "ISC"
}