-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "heysoo",
"version": "0.0.8",
"description": "A lightweight mvc framework of Node.js base on Koa",
"main": "index.js",
"scripts": {
"eslint": "eslint lib/*",
"doc": "docute doc -w -p 72",
"ab": "ab -n 1000 -t 100 http://127.0.0.1:8002/",
"test": "mocha test/router.js && mocha test/static.js",
"test-router": "mocha test/router.js --delay",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Hisheng",
"license": "MIT",
"dependencies": {
"bookshelf": "^1.2.0",
"chalk": "^4.1.2",
"delegates": "^1.0.0",
"knex": "^2.5.1",
"koa": "^2.14.2",
"koa-body": "^6.0.0",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.0",
"koa-session": "^6.4.0",
"koa-static": "^5.0.0",
"koa-views": "^8.1.0",
"mysql2": "^3.6.0",
"node-schedule": "^2.1.0",
"nunjucks": "^3.2.4",
"sequelize": "^6.33.0"
},
"devDependencies": {
"autocannon": "^7.12.0",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"vitepress": "1.0.0-rc.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hishengs/heysoo.git"
},
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">= 7.6.0"
}
}