-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "IgniteTSExpress",
"version": "0.0.2",
"description": "Node.js TypeScript Express.js Boilerplate",
"main": "dist/index.js",
"repository": "https://github.com/iamchathu/IgniteTSExpress.git",
"author": "Chathu Vishwajith",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "eslint src --ext .ts",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsnd --deps --clear --rs --respawn --transpile-only src/index.ts",
"lint": "eslint src --ext .ts --quiet --fix",
"test": "jest --passWithNoTests"
},
"heroku-run-build-script": true,
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.3.1"
}
}