-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.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
{
"name": "nodejs-starter",
"version": "0.0.0",
"private": true,
"main": "src/server.ts",
"scripts": {
"prestart": "yarn build",
"start": "concurrently -k -n ts,server -c \"bgBlue.bold,bgMagenta.bold\" \"yarn watch\" \"yarn server\"",
"server": "nodemon ./build/server.js",
"watch": "tsc -w",
"prebuild": "rimraf \"./build/**/*.js\"",
"build": "tsc",
"test": "jest --watch"
},
"dependencies": {
"axios": "^1.3.5",
"cors": "^2.8.5",
"debug": "~4.3.4",
"express": "~4.18.2",
"helmet": "^6.0.1",
"morgan": "~1.10.0",
"nodemon": "^2.0.22"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.10",
"@types/supertest": "^2.0.12",
"concurrently": "^7.6.0",
"cookie-parser": "~1.4.6",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}