-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 859 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 859 Bytes
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
{
"name": "typescript-api-skeleton",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/src/server.js",
"dev": "ts-node-dev ./src/server.ts",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.7",
"@types/supertest": "^2.0.12",
"eslint": "^8.46.0",
"eslint-config-codely": "^3.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"express": "^4.18.2"
}
}