-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 844 Bytes
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
{
"name": "learn-terraform-aws-instance",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": " rimraf dist && tsc && cp package.json dist && cd dist && npm install",
"zip": " npx bestzip dist.zip dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"husky": "^4.3.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"volta": {
"node": "14.15.1",
"npm": "6.14.9"
},
"dependencies": {
"cuid": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "terraform fmt -check && terraform validate"
}
}
}