-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.54 KB
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
58
59
60
61
62
{
"name": "taskhelp",
"version": "1.0.0",
"description": "TODO Management",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"serve": "node dist/infrastructure/server.js",
"dev": "NODE_ENV=development nodemon --config ./nodemon.json",
"tsc": ".\\node_modules\\.bin\\tsc",
"build": "rimraf dist && tsc -p tsconfig.json --outDir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
},
"author": "r.nishio",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^6.1.0",
"@types/moment-timezone": "^0.5.9",
"@types/mysql": "^2.15.5",
"db-migrate": "^0.11.4",
"db-migrate-mysql": "^1.1.10",
"express": "^4.16.4",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23",
"mysql": "^2.16.0",
"prettier": "^1.15.3",
"tslint": "^5.12.0",
"tslint-loader": "^3.5.4",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"@types/express": "^4.16.0",
"dotenv": "^6.2.0",
"eslint": "^5.11.0",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.9",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
}
}