-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "heroku-nodejs-template",
"version": "1.0.0",
"description": "Host website with heroku platform",
"main": "app.js",
"repository": "https://github.com/AhmedBHameed/heroku-nodejs-template.git",
"author": "ahmedbhameed <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"serve": "node build/server.prod.js",
"build": "webpack -p --env=prod",
"start": "webpack --watch -d --env=dev",
"prod": "webpack --watch -p --env=prod",
"lint:r": "eslint src/ --ext .ts",
"lint:r:fix": "npm run lint:r -- --fix"
},
"eslintConfig": {
"extends": "gts"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-prettier": "^3.1.3",
"gts": "^2.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"nodemon": "^2.0.3",
"nodemon-webpack-plugin": "^4.0.8",
"prettier": "^2.0.4",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix"
]
}
}