-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "library_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/server.ts",
"test": "robot --variable BACKENDTESTEMAIL:${TESTUSERNAME} --variable BACKENDTESTPASSWORD:${TESTPASSWORD} --outputdir robot/results robot/tests",
"build": "tsc",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"mock": "jest",
"prepare": "if [ -f node_modules/.bin/husky ]; then husky install; fi"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "ISC",
"dependencies": {
"@types/morgan": "^1.9.5",
"bcrypt": "5.1.0",
"cookie-parser": "^1.4.6",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"express-bearer-token": "2.4.0",
"http-status-codes": "^2.2.0",
"iso-3166-1-codes": "^1.2.0",
"morgan": "^1.10.0",
"mysql": "2.18.1",
"mysql2": "^3.6.1",
"openid-client": "5.4.0",
"wait-on": "7.0.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@types/bcrypt": "5.0.0",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.13",
"@types/express": "4.17.16",
"@types/jest": "29.4.0",
"@types/mysql": "2.15.21",
"@types/node": "18.11.18",
"@types/supertest": "^2.0.12",
"babel-jest": "29.4.0",
"husky": "^8.0.3",
"jest": "^29.4.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}