-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "typescript-express-project",
"version": "1.0.0",
"description": "A TypeScript project with Express",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "rimraf coverage .nyc_output && vitest run --coverage --config vitest.config.ts",
"test:performance": "k6 run tests/performance/get-health.js",
"build": "npm run validate-typescript && npm run build:clean && npm run generate-dist",
"build:clean": "rimraf dist; exit 0",
"prepare": "husky",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"validate-typescript": "tsc -p tsconfig.prod.json --noEmit",
"generate-dist": "swc ./src -d dist --strip-leading-paths"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.17.1",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.1",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^26.0.15",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-istanbul": "^1.5.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-vitest": "^0.4.1",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^26.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5",
"unplugin-swc": "^1.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2"
}
}