-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
39
40
41
42
43
44
45
{
"name": "nodenotes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch-ts": "gulp",
"watch-js": "nodemon -w dist --delay 1 dist/app.js",
"dev": "gulp build && concurrently \"npm run watch-ts\" \"npm run watch-js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/router": "^10.0.0",
"esbuild": "^0.9.4",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-json-error": "^3.1.2",
"koa-unless": "^1.0.7",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json-error": "^3.1.2",
"@types/koa__router": "^8.0.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"gulp": "^4.0.2",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
}
}