forked from kaiosilveira/nodejs-ts-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1022 Bytes
/
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
{
"name": "nodejs-ts-express-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "rimraf ./dist && tsc",
"test": "jest --passWithNoTests",
"serve": "node ./dist/index.js",
"prettier:check": "npx prettier --check ./src",
"prettier:fix": "npx prettier --write ./src",
"lint": "npx eslint ./src/**/*.ts"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.1",
"helmet": "^6.0.0"
}
}