-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 861 Bytes
/
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
{
"name": "mostalah",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "node ./index.js",
"dev": "nodemon ./index.js",
"prepare": "husky install",
"import": "node importers/index.js",
"test": "tape ./tests/*.js | tap-spec",
"lint": "eslint ."
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-validator": "^6.11.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"nunjucks": "^3.2.3",
"sequelize": "^6.6.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^7.27.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "2.3.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.prettier": "prettier --write"
}
}