generated from rolling-scopes-school/nodejs-course-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.56 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
71
{
"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 --ext .js,.ts --fix src/",
"test": "cross-env DEBUG=rs:* jest --testMatch \"<rootDir>/test/e2e/test/*.test.js\" --noStackTrace --runInBand",
"test:auth": "cross-env DEBUG=rs:* TEST_MODE=auth jest --noStackTrace"
},
"keywords": [
"rs",
"school",
"rest",
"node",
"express",
"autotest",
"starter"
],
"license": "ISC",
"engines": {
"node": ">=16.0.0 <17"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint"
]
},
"dependencies": {
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"express": "4.17.1",
"swagger-ui-express": "4.1.6",
"uuid": "8.3.2",
"yamljs": "0.3.0"
},
"devDependencies": {
"chai": "4.3.4",
"debug": "4.3.2",
"dirty-chai": "2.0.1",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^4.3.8",
"jest": "27.3.1",
"lint-staged": "12.0.3",
"nodemon": "2.0.15",
"prettier": "2.4.1",
"supertest": "6.1.6"
}
}