-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"type": "module",
"name": "nemo-express",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "export $(xargs < ./config/.env); NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --forceExit",
"coverage": "export $(xargs < ./config/.env); NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"eslint": "./node_modules/.bin/eslint --fix",
"format": "prettier --write",
"sequelize": "./node_modules/.bin/sequelize"
},
"dependencies": {
"@google-cloud/storage": "^6.2.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"pug": "2.0.0-beta11",
"sequelize": "^6.21.2",
"socket.io": "^4.5.1"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^4.3.8",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --no-stash"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run eslint"
]
}
}