-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "aws-cdk-playground",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "rimraf ./dist && tsc",
"test": "jest --ci",
"lint": "eslint **/*.{ts,js}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuglu/aws-cdk-playground.git"
},
"keywords": [
"express",
"typescript",
"eslint",
"prettier",
"jest",
"supertest",
"husky",
"lint-staged"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fuglu/aws-cdk-playground/issues"
},
"homepage": "https://github.com/fuglu/aws-cdk-playground#readme",
"dependencies": {
"@godaddy/terminus": "^4.3.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"dockerlint": "^0.3.9",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
],
"*.{ts,js}": [
"eslint --fix",
"git add"
],
"Dockerfile": [
"dockerlint"
]
}
}