-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 908 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
{
"name": "{{name}}",
"version": "0.0.1",
"description": "{{description}}",
"author": "{{author}}",
"main": "app.ts",
"scripts": {
"dev": " nodemon --exec 'ts-node' --files app.ts",
"start": "npm run dev",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .ts,.js,.vue ."
},
"license": "ISC",
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.3.5"
},
"dependencies": {
"ejs": "^3.1.6",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"koa-views": "^8.0.0",
"koa-logger": "^3.2.1"
}
}