-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "mvt---martes-2pm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf ./build && tsc",
"render:start": "node build/index.js",
"render:build": "npm install --include=dev && npm run build && npm run copy:templates && npm run copy:public",
"copy:public": "cp -R ./src/public ./build/public",
"copy:templates": "cp -R ./src/template ./build/template",
"dev": "tsnd ./src/index.ts",
"test": "jest --verbose",
"test-c": "jest --coverage --runInBand",
"test-v": "jest --verbose --runInBand --detectOpenHandles",
"test-d": "jest --testNamePattern='describe' --verbose",
"test-f": "jest --testPathPatterns='Environment.test.ts' --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^5.1.0",
"morgan": "^1.10.1",
"multer": "^2.0.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^24.7.2",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"puppeteer": "^24.28.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"roots": [
"<rootDir>/test"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}