-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "typescript-starter",
"version": "1.0.0",
"main": "dist/index.js",
"author": {
"name": "Patrick Reagan",
"email": "github@the-reagans.com"
},
"license": "MIT",
"prettier": {
"singleQuote": true,
"useTabs": false,
"printWidth": 80,
"tabWidth": 2
},
"scripts": {
"client:generate": "sta --axios --path ../spec/openapi/openapi.yaml --name openapi -o src --axios",
"cli": "ts-node src/cli.ts",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"test:coverage": "yarn test --coverage",
"prebuild": "rimraf dist/",
"build": "tsc --build tsconfig.build.json"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.1",
"@types/jest": "^29.5.7",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"swagger-typescript-api": "^13.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"axios": "^1.6.7",
"commander": "^12.0.0"
}
}