-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 866 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
{
"name": "node-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"format": "prettier --write .",
"build": "yarn etsc --config=etsc.config.js",
"go": "ts-node ./src/index.ts"
},
"dependencies": {
"axios": "^0.27.2",
"got": "^11.0",
"koa": "^2.13.4",
"qs": "^6.11.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"esbuild": "^0.14.2",
"esbuild-node-tsc": "^1.8.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0"
}
}