-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "typescript-starter",
"version": "1.0.0",
"description": "TypeScript starter repository",
"main": "index.js",
"type": "module",
"scripts": {
"build": "yarn prebuild && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" vitest.*.ts",
"lint": "eslint \"{src,test}/**/*.ts\" vitest.*.ts --fix",
"prebuild": "rimraf dist",
"start": "node ./dist/index.js",
"start:dev": "nodemon ./src/index.ts",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:e2e": "vitest --config ./test/vitest-e2e.config.ts"
},
"keywords": [
"esm",
"starter",
"typescript",
"vitest"
],
"author": "Christophe Geers",
"license": "MIT",
"dependencies": {
"express": "^4.19.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-v8": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.2"
},
"engines": {
"node": ">= 20"
},
"packageManager": "[email protected]"
}