-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
{
"name": "babyfoot",
"version": "1.0.0",
"description": "sample CQRS/ES backend + PWA app ",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"build:test": "tsc -p test/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"coveralls": "vitest run --coverage && cat coverage/lcov.info | coveralls",
"prettier": "prettier src/**/*.ts",
"prettier:write": "prettier src/**/*.ts --write",
"prettier:check": "prettier src/**/*.ts --check",
"start": "ts-node main.ts",
"newman": "npx newman run postman/Babyfoot.postman_collection.json -e postman/Babyfoot-localhost-3000.postman_environment.json",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"test:mutations": "stryker run",
"test:mutations:debug": "stryker run --fileLogLevel trace --logLevel debug",
"test:vulnerabilities": "npm audit --check && snyk test",
"test:integration": "start-server-and-test start http-get://localhost:3000/api/health newman",
"test:all": "npm test && npm run prettier:check && npm run test:mutations && npm run test:integration && npm run test:vulnerabilities"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doppelganger9/babyfoot.git"
},
"bugs": {
"url": "https://github.com/doppelganger9/babyfoot/issues"
},
"homepage": "https://github.com/doppelganger9/babyfoot",
"keywords": [
"PWA",
"CQRS/ES",
"typescript",
"babyfoot"
],
"engines": {
"node": ">=18.x",
"npm": ">=10.x"
},
"author": "David LACOURT <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/traverse": "7.25.6",
"@stryker-mutator/core": "8.6.0",
"@stryker-mutator/vitest-runner": "8.6.0",
"@types/sinon": "17.0.3",
"@vitest/coverage-v8": "2.1.1",
"coveralls": "3.1.1",
"lodash": "4.17.21",
"prettier": "3.3.3",
"sinon": "19.0.2",
"snyk": "1.1293.1",
"start-server-and-test": "2.0.8",
"tslint": "6.1.3",
"vitest": "2.1.1"
},
"dependencies": {
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/node": "22.7.4",
"cors": "2.8.5",
"diff": "7.0.0",
"express": "4.21.0",
"extend": "3.0.2",
"firebase-admin": "12.5.0",
"helmet": "8.0.0",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"snyk": true
}