-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 910 Bytes
/
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
{
"name": "sst-api-types",
"version": "0.0.0",
"description": "Infer types from an SST project",
"main": "build/index.js",
"bin": {
"api-types": "build/bin.js"
},
"scripts": {
"build": "tsc",
"test": "jest ./",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"author": "Ivo Evans",
"license": "ISC",
"devDependencies": {
"@serverless-stack/cli": "1.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"ts-jest": "^28.0.3",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts",
"jest --passWithNoTests"
]
},
"dependencies": {
"commander": "^9.3.0",
"cosmiconfig": "^7.0.1"
}
}