-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "game-helper",
"version": "1.0.0",
"description": "A game helper",
"main": "server.js",
"scripts": {
"test": "npm run lint",
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouisYS-Carleton/Game-Helper.git"
},
"keywords": [
"game",
"helper"
],
"author": "Louis YS, Angelica Mapeso",
"license": "ISC",
"bugs": {
"url": "https://github.com/LouisYS-Carleton/Game-Helper/issues"
},
"homepage": "https://github.com/LouisYS-Carleton/Game-Helper#readme",
"dependencies": {
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"intro.js": "^3.0.1",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"popper.js": "^1.16.1",
"sequelize": "^6.3.5",
"shepherd.js": "^8.1.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2"
}
}