-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "e4p",
"version": "0.0.0",
"description": "E4P JumboCode Project",
"main": "server.js",
"engines": {
"node": "22.x"
},
"scripts": {
"test": "mocha --exit --recursive tests",
"start": "node server.js",
"slint-client": "stylelint ./public/**/*.css",
"hlint-client": "htmlhint ./public/**/*.html",
"lint-client": "eslint ./public/**/*.js",
"lint": "npm run slint-client && npm run hlint-client && npm run lint-client"
},
"husky": {
"hooks": {
"pre-commit": "npm run slint-client"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/JumboCode/E4P.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JumboCode/E4P/issues"
},
"homepage": "https://github.com/JumboCode/E4P#readme",
"dependencies": {
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "*",
"connect-mongo": "^5.1.0",
"connect-pg-simple": "^10.0.0",
"cookie-parser": "*",
"dotenv": "^17.2.2",
"express": "^4.16.3",
"express-session": "^1.18.2",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-http": "*",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^7.18.2",
"socket.io": "^2.1.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^4.2",
"eslint": "^5.14.1",
"htmlhint": "^0.10.1",
"husky": "^1.3.1",
"mocha": "^5.2",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0"
}
}