-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "fizz-buzz",
"version": "1.0.0",
"description": "An implementation of the FizzBuzz algorithm in Express",
"license": "ISC",
"author": "Jérémy Aubourg",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx --watch src/server.ts",
"format:write": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node dist/server.js",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage"
},
"dependencies": {
"dotenv": "^17.3.1",
"express": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/express": "^5.0.6",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}