-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
66 lines (66 loc) · 2.17 KB
/
package.json
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
{
"name": "www.mipengine.org",
"version": "1.0.0",
"description": "mip website",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:css && npm run build:doc",
"build:css": "webpack --config src/style/webpack.config.js",
"build:doc": "node src/index.js",
"dev:css": "cross-env NODE_ENV=development npm run build && webpack --config src/style/webpack.config.js --watch",
"dev": "cross-env NODE_ENV=development npm run build && edp webserver start --port 8627",
"clean": "rm -rf api codelabs guide components extensions img assets/img mip docs tmp index.html v2 ui contribute about news",
"cp:bce": "cp -r ./v2 ../mip_online/bce-www.mipengine.org",
"refresh": "npm run build && sh build.sh",
"server": "npm run build:css && npm run build && edp webserver start --port 9527",
"deploy": "npm run build:css && npm run build",
"lint": "npm run lint:js",
"lint:js": "eslint --ext .js .",
"fix": "npm run fix:js",
"fix:js": "eslint --ext .js . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mipengine/www.mipengine.org.git"
},
"keywords": [
"mip",
"website"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mipengine/www.mipengine.org/issues"
},
"homepage": "https://www.mipengine.org",
"devDependencies": {
"autoprefixer": "^8.6.3",
"cheerio": "^1.0.0-rc.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-webpack": "^5.0.2",
"kram": "^1.0.9",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss-loader": "^2.1.5",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.12.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"download-git-repo": "^1.0.2",
"etpl": "^3.2.0",
"fs-extra": "^6.0.1",
"image-size": "^0.6.2"
}
}