-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.5 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.5 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "rs-rest-service-starter",
"version": "1.0.0",
"repository": {
"type": "git",
"url": ""
},
"type": "module",
"description": "REST service starter for RS School",
"main": "build/server.js",
"scripts": {
"app": "node build/server.js",
"start": "nodemon",
"start:docker": "nodemon -L --exitcrash",
"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",
"doc": "jsdoc -c ./jsDocConfig.json",
"follow": "tsc && npm run app"
},
"keywords": [
"rs",
"school",
"rest",
"node",
"express",
"autotest",
"starter"
],
"license": "ISC",
"engines": {
"node": ">=14.0.0 <15"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint"
]
},
"nodemonConfig": {
"restartable": "rs",
"watch": [
"src"
],
"ext": "ts",
"exec": "npm run follow"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cross-env": "7.0.3",
"dotenv": "9.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"express": "4.17.1",
"http-status-codes": "^2.1.4",
"jsdoc": "^3.6.7",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"swagger-ui-express": "4.1.6",
"ts-node": "^10.0.0",
"typeorm": "^0.2.34",
"uuid": "8.3.2",
"yamljs": "0.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-eslint": "^10.1.0",
"chai": "4.3.4",
"debug": "4.3.1",
"dirty-chai": "2.0.1",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"supertest": "6.1.3",
"typescript": "^4.3.2"
}
}