-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "server",
"version": "1.0.0",
"description": "Server for HackerRank Test Case Generator",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"server": "nodemon server/index.js",
"lint": "eslint '**/*.js'",
"lint-fix": "prettier-eslint '**/*.js' --write",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint-fix",
"git add"
]
},
"author": "Aashutosh Rathi",
"license": "MIT",
"dependencies": {
"all-contributors-cli": "^6.14.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"ejs": "^3.0.1",
"express": "^4.16.4",
"express-fileupload": "^1.1.4",
"express-session": "^1.16.1",
"express-validator": "^7.0.1",
"helmet": "^8.0.0",
"mongoose": "^8.0.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.7",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier-eslint": "^16.1.2",
"prettier-eslint-cli": "^8.0.1"
},
"repository": {
"type": "git",
"url": "https://git.io/tcgen"
}
}