-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "coderatingengine",
"version": "1.20.0",
"engines": {
"node": "20.x",
"yarn": "1.x"
},
"description": "Engine to handle the rating mechanisms for the clean code",
"main": "bin/www.js",
"scripts": {
"start": "node ./bin/www.js",
"dev": "nodemon ./bin/www.js",
"test": "mocha --exit --timeout 60000",
"build": "yarn install",
"generate-docs": "apidoc -c ./apidoc.json -i ./routes/api/v1 -o ./api/public"
},
"author": "Gaurav Walia",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"mongoose": "^8.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"apidoc": "^1.2.0",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"prettier": "^3.0.3",
"supertest": "^7.0.0"
},
"lint-staged": {
"*.js": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}