forked from Dragon-Rider/node-server
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "node-server-demo",
"author": "EragonJiang",
"version": "1.0.0",
"description": "Node server demo based on koa",
"keywords": [
"node",
"koa",
"demo"
],
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development node-dev --no-notify app.js",
"lint": "eslint ./src --fix"
},
"dependencies": {
"koa": "^2.3.0",
"koa-ejs": "^4.1.0",
"koa-logger": "^1.3.0",
"koa-mount": "^3.0.0",
"koa-onerror": "^3.1.0",
"koa-router": "^5.1.2",
"koa-static": "^4.0.1",
"mysql": "^2.14.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"thunkify": "^2.1.2"
},
"devDependencies": {
"eslint": "^3.0.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"node-dev": "^3.1.3"
},
"license": "MITs",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Dragon-Rider/node-server-demo.git"
}
}