-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "node-typescript-project-template",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all check test clean && tsc",
"start": "node ./build/src",
"local": "tsx ./src",
"local:watch": "nodemon ./src -e ts,json --exec 'npm run local'",
"check": "eslint ./src && npx prettier --check ./src",
"format": "eslint ./src --fix && npx prettier --write ./src",
"test": "jest"
},
"keywords": [
"typescript",
"node",
"eslint",
"prettier",
"jest",
"supertest"
],
"author": "Elson Correia @ Before Semicolon",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.4.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"dependencies": {}
}