-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.05 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "kato-server",
"version": "3.0.0-alpha.2",
"description": "kato server",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --hide-modules --config webpack.prod.js",
"dev": "webpack -w --hide-modules --config webpack.dev.js",
"example": "webpack -w --hide-modules --config webpack.example.js",
"test": "webpack --hide-modules --config webpack.prod.js && jest"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kato/kato-node.git"
},
"keywords": [
"kato",
"api",
"core"
],
"author": "李雨田 <demon@danwi.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kato/kato-node/issues"
},
"homepage": "https://github.com/kato/kato-node#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/multer": "^1.4.3",
"@types/node": "^12.7.2",
"@types/supertest": "^2.0.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"express": "^4.17.1",
"husky": "^3.0.4",
"jest": "^24.9.0",
"nodemon-webpack-plugin": "^4.3.2",
"source-map-support": "^0.5.13",
"supertest": "^4.0.2",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/joi": "^14.3.3",
"body-parser": "^1.19.0",
"cls-hooked": "^4.2.2",
"dayjs": "^1.8.16",
"debug": "^4.1.1",
"destroy": "^1.0.4",
"get-parameter-names": "^0.3.0",
"joi": "^14.3.1",
"merge-options": "^1.0.1",
"multer": "^1.4.2",
"on-finished": "^2.3.0",
"prettyjson": "^1.2.1",
"qs": "^6.8.0"
}
}