-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
66
67
{
"name": "app-prototype",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"prestart": "node bin/pre-start",
"start": "nodemon --watch . --watch .env.development --watch .env.development.local app/server.js",
"lint": "eslint 'app/**/*.js'",
"server": "node app/server.js",
"test": "jest --watch",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"app/**/*.js": "eslint"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.10",
"module-alias": "^2.2.0",
"morgan": "^1.9.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-junit": "^14.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"shelljs": "^0.8.5",
"supertest": "^6.3.1"
},
"resolutions": {
"caniuse-lite": "^1.0.30001298"
},
"engines": {
"node": "^16.18.1",
"yarn": ">=1.12.1"
},
"_moduleAliases": {
"@app": "app"
},
"jest": {
"roots": [
"app"
],
"moduleNameMapper": {
"^@app(.*)$": "<rootDir>/app$1"
},
"collectCoverageFrom": [
"app/**/*.js"
]
}
}