-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.73 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.73 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
{
"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.ts",
"scripts": {
"start": "nodemon",
"start:ts": "ts-node src/server.ts",
"build": "tsc",
"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",
"docs": "jsdoc -c ./.jsdoc.conf.json",
"docts": "tsc && jsdoc -c ./.jsdoc.conf.json",
"dev": "nodemon -L src/server.ts --exitcrash",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"typeorm:cli": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli -f src/common/ormconfig.ts",
"migration:create": "npm run typeorm migration:generate -- -n migration --config src/common/ormconfig.ts",
"migration:run": "npm run typeorm migration:run"
},
"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"
]
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cross-env": "7.0.3",
"dotenv": "9.0.0",
"express": "4.17.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"swagger-ui-express": "4.1.6",
"typeorm": "^0.2.34",
"uuid": "8.3.2",
"winston": "^3.3.3",
"yamljs": "0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/node": "^15.6.1",
"@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",
"chai": "4.3.4",
"debug": "4.3.1",
"dirty-chai": "2.0.1",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "^12.3.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",
"jsdoc": "^3.6.7",
"lint-staged": "10.5.4",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"supertest": "6.1.3",
"ts-node": "^10.0.0",
"tslib": "^1.14.1",
"typescript": "^4.3.2"
}
}