forked from Manweill/swagger-axios-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 890 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
{
"name": "swagger-axios-codegen",
"version": "0.5.3",
"main": "./dist/index",
"typings": "./dist/",
"author": "Manwei Leung <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/Manweill/swagger-axios-codegen.git",
"type": "git"
},
"keywords": [
"swagger",
"axios",
"typescript",
"generator",
"codegen"
],
"scripts": {
"build": "tsc -p ./src",
"prestart": "npm run build",
"precommit": "prettier --write --config .prettierrc ./src/*.ts",
"start": "node ./dist/index",
"watch": "tsc --watch -p ./src "
},
"dependencies": {
"axios": "^0.18.0",
"camelcase": "^5.0.0",
"pascalcase": "^0.1.1",
"prettier": "^1.15.2"
},
"devDependencies": {
"@types/node": "^9.6.0",
"@types/prettier": "^1.12.2",
"tslint": "^5.10.0",
"typescript": "^3.2.2"
}
}