-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "poi-server",
"version": "1.0.0",
"description": "Server side of poi.",
"private": true,
"main": "index.js",
"scripts": {
"start": "node --harmony index.js",
"dev": "webpack-dev-server --content-base public/ --config webpack.config.dev.js --colors --watch --inline --progress --hot",
"build": "NODE_ENV=production webpack -p --config webpack.config.prod.js",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts --ext .js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poooi/poi-server.git"
},
"keywords": [
"poi",
"KanColle"
],
"author": "Magica",
"license": "MIT",
"bugs": {
"url": "https://github.com/yudachi/poi-server/issues"
},
"homepage": "https://github.com/yudachi/poi-server#readme",
"dependencies": {
"@koa/router": "^10.0.0",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@sindresorhus/df": "^3.1.1",
"babel-plugin-add-module-exports": "^1.0.4",
"badge-maker": "^3.3.0",
"bluebird": "^3.7.2",
"dotenv": "^8.2.0",
"esbuild": "^0.14.38",
"esbuild-register": "^3.3.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-cash": "^4.0.5",
"koa-pino-logger": "^3.0.0",
"lodash": "^4.17.20",
"mongoose": "^5.11.13",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"semver": "^7.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.7",
"@types/babel__core": "^7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/bluebird": "^3.5.33",
"@types/bytes": "^3.1.0",
"@types/eslint": "^7.2.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/koa": "^2.11.6",
"@types/koa__router": "^8.0.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-cash": "^4.0.0",
"@types/koa-pino-logger": "^3.0.0",
"@types/lodash": "^4.14.168",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"@types/prettier": "^2.1.6",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}