generated from profcfuhrmanets/log210-jeu-de-des-node-express-ts
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 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
{
"name": "ets-log210-typescript-node-api",
"version": "2.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -b --verbose && shx --verbose cp -ru public dist/",
"start": "node dist/index.js",
"start:watch": "nodemon",
"watch": "jest --watch --coverage test",
"test": "jest --colors lab0.test.ts",
"test-un": "jest --colors --coverage",
"test-lab0": "jest --colors --coverage lab0.test.ts",
"testj-lab0": "jest --json --outputFile=report_test_stats.json lab0.test.ts",
"testh-lab0": "jest --json --outputFile=report_test_stats.html lab0.test.ts",
"test-squelette": "jest --colors --coverage --testPathIgnorePatterns=lab0.test.ts",
"uml-classes-puml": "tplant -i src/app.ts -A -o docs/modeles/App.puml",
"uml-classes-svg": "tplant -i src/app.ts -A -o docs/modeles/App.svg"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run build && npm start",
"ext": "ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/supertest": "^6.0.2",
"gitinspector": "^0.5.0-dev-2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"nodemon": "^3.1.7",
"shx": "^0.3.4",
"supertest": "^7.0.0",
"tplant": "^3.1.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"debug": "^4.3.7",
"express": "^4.19.2",
"express-flash-plus": "^0.0.7",
"express-session": "^1.18.0",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"pug": "^3.0.3"
}
}