-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 KB
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
{
"name": "esinms",
"version": "1.0.0",
"description": "- node.js\r - 框架 koa\r - 数据 nosql/mongodb",
"main": "index.js",
"scripts": {
"test": "ts-node ./test",
"start": "ts-node ./src",
"prepare": "husky install",
"build": "babel --extensions .ts --copy-files src --out-dir dist"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-dogs/ESINMS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/single-dogs/ESINMS/issues"
},
"homepage": "https://github.com/single-dogs/ESINMS#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-conditional-get": "^2.0.0",
"@types/koa-etag": "^3.0.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.2",
"@types/koa-session": "^5.10.3",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/mongodb": "^3.6.12",
"@types/node-schedule": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4"
},
"dependencies": {
"joi": "^17.4.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"mongodb": "^3.6.6",
"node-schedule": "^2.0.0",
"typescript": "^4.2.4"
}
}