-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon bin/run",
"clean": "rimraf dist&& rimraf public/",
"web": "npm-run-all -s clean webpack",
"webpack": "cross-env NODE_ENV=development webpack --config ./config/webpack.config.js",
"dev": "npm-run-all -s clean koa",
"koa": "runkoa bin/www",
"pm2": "pm2 start bin/run ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"co": "^4.6.0",
"debug": "^2.2.0",
"ejs": "~2.3.3",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-convert": "^1.2.0",
"koa-json": "^1.1.1",
"koa-logger": "^1.3.0",
"koa-onerror": "^1.2.1",
"koa-router": "^7.0.0",
"koa-static": "^2.0.0",
"koa-views": "^5.0.1",
"runkoa": "^1.3.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-3": "^6.11.0",
"babel-runtime": "^6.11.6",
"cross-env": "^3.1.4",
"css-loader": "^0.23.1",
"ejs-webpack-builder": "^2.0.0",
"ejs-webpack-plugin": "^1.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"glob": "^7.1.1",
"koa-webpack-dev-middleware": "^1.3.0",
"koa-webpack-hot-middleware": "^1.0.3",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"nodemon": "^1.8.1",
"npm-run-all": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"description": "koa webpack build website blog",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/superNever/website.git"
},
"keywords": [
"supernever",
"website",
"koa2",
"webpack",
"ejs",
"boilerplate"
],
"author": "supernever",
"license": "MIT",
"bugs": {
"url": "https://github.com/superNever/website/issues"
},
"homepage": "https://github.com/superNever/website#readme"
}