forked from rolling-scopes-school/nodejs-course-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.48 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
68
69
70
{
"name": "rs-rest-service-starter",
"version": "1.0.0",
"repository": {
"type": "git",
"url": ""
},
"type": "commonjs",
"description": "REST service starter for RS School",
"main": "src/server.js",
"scripts": {
"start": "nodemon src/server.js",
"lint": "eslint ./ --ignore-path .gitignore --fix",
"test": "cross-env DEBUG=rs:* jest --testMatch \"<rootDir>/test/e2e/test/*.test.js\" --noStackTrace",
"test:auth": "cross-env DEBUG=rs:* TEST_MODE=auth jest --noStackTrace"
},
"keywords": [
"rs",
"school",
"rest",
"node",
"express",
"autotest",
"starter"
],
"license": "ISC",
"engines": {
"node": ">=12.0.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"dependencies": {
"cross-env": "6.0.3",
"dotenv": "8.2.0",
"express": "4.17.1",
"swagger-ui-express": "4.1.2",
"uuid": "3.3.3",
"yamljs": "0.3.0"
},
"devDependencies": {
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"chai": "4.2.0",
"debug": "4.1.1",
"dirty-chai": "2.0.1",
"jest": "24.9.0",
"supertest": "4.0.2"
}
}