-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "swagger2ts",
"version": "0.0.1",
"license": "MIT",
"repository": "https://github.com/LiJiahaoCoder/swagger2ts.git",
"author": "Jiahao Li <lijiahao_shandong@163.com>",
"scripts": {
"prepare": "husky install",
"test": "jest --coverage",
"start": "parcel ./src/index.html",
"prebuild": "rm -rf ./dist",
"build": "parcel build ./src/index.html --public-url \"./\" --no-source-maps"
},
"alias": {
"@/*": "./src/$1"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.186",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jest-transform-stub": "^2.0.0",
"parcel": "^2.0.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"ace-builds": "^1.4.13",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-ace": "^9.5.0",
"react-dom": "^17.0.2"
}
}