-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.67 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
60
61
62
63
64
65
{
"name": "nodebackend",
"version": "0.1.0",
"description": "Node.js backend of webevaluator",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"format": "prettier --write . && eslint ./ --fix",
"checkformat": "prettier --check . && eslint ./ --fix"
},
"author": "Aman Dwivedi",
"license": "MIT",
"lint-staged": {
"**/*.+(js|jsx|css|scss)": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.7",
"express": "^4.18.1",
"html-pdf": "^3.0.1",
"jsdom": "^19.0.0",
"mongoose": "^6.3.2",
"morgan": "^1.10.0",
"puppeteer": "^13.7.0",
"puppeteer-core": "^13.7.0",
"qs": "^6.10.3",
"rotating-file-stream": "^3.0.4",
"update": "^0.7.4"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^3.2.3",
"grunt": "^1.5.2",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "~4.0.0",
"grunt-contrib-qunit": "^6.1.0",
"grunt-contrib-uglify": "~5.2.1",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.6.2"
}
}