-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "ntut-portal-login-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:prod": "npm run build && node ./dist/main.js",
"start:dev": "nodemon",
"build": "tsc",
"lint": "eslint ./src/ --ext ts,json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "DevilTea",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"axios-cookiejar-support": "^0.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.7",
"qs": "^6.9.1",
"tough-cookie": "^3.0.1"
},
"devDependencies": {
"@types/koa": "^2.11.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.0",
"@types/qs": "^6.9.1",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}