-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "hatch-assignment-backend",
"version": "0.0.0",
"scripts": {
"format": "prettier --write \"**/*.{ts,tsx}\"",
"build": "npx ts-node build.ts",
"start": "node -r module-alias/register ./dist --env=production",
"dev": "nodemon",
"test": "jest --coverage --collectCoverageFrom='src/**/*.ts'"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"inserturlparams": "^1.0.1",
"jet-logger": "^1.3.1",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"ts-command-line-args": "^2.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/find": "^0.2.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.1",
"@types/jsonfile": "^6.1.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.2",
"@types/uuid": "^9.0.1",
"find": "^0.3.0",
"fs-extra": "^11.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
]
}
}