-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 926 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
{
"name": "caprover-api",
"version": "1.0.0",
"description": "API client for CapRover",
"main": "index.js",
"scripts": {
"formatter": "prettier --check './src/**/*.ts*'",
"formatter-write": "prettier --write './src/**/*.ts*'",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "tslint --fix -c tslint.json -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run tslint && rm -rf ./built && npx tsc && chmod +x ./built -R",
"start": "node ./built/index.js",
"dev": "npx tsc && npm start"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/node": "^22.8.1",
"prettier": "^3.3.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.6.3"
}
}