forked from HermanL02/CDN
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 743 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 743 Bytes
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
{
"name": "cdn-file-service",
"version": "1.0.0",
"description": "CDN file error handling module",
"type": "module",
"main": "dist/fileErrorHandler.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"jest": "^30.0.2",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5",
"vitest": "^0.34.6"
}
}