-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
67
68
{
"name": "letsblog",
"version": "0.3.0",
"description": "A blog publishing system",
"keywords": [
"blog",
"cms"
],
"homepage": "https://github.com/heeroluo/letsblog#readme",
"bugs": {
"url": "https://github.com/heeroluo/letsblog/issues"
},
"license": "MIT",
"author": {
"name": "Heero.Luo",
"email": "[email protected]",
"url": "http://heeroluo.net/"
},
"scripts": {
"start": "node ./bin/www",
"dev": "node ./bin/www --env dev --no-prod",
"test": "node ./bin/www --env test --no-prod",
"pre": "node ./bin/www --env pre --no-prod",
"prod": "node ./bin/www --env prod --no-prod",
"build-dev": "node ./node_modules/back2front-cli/bin/index build . --env dev",
"build-test": "node ./node_modules/back2front-cli/bin/index build . --env test",
"build-pre": "node ./node_modules/back2front-cli/bin/index build . --env pre",
"build-prod": "node ./node_modules/back2front-cli/bin/index build . --env prod",
"depa": "node ./node_modules/back2front-cli/bin/index depa ."
},
"repository": {
"type": "git",
"url": "https://github.com/heeroluo/letsblog.git"
},
"dependencies": {
"body-parser": "~1.18.3",
"cookie-parser": "~1.4.3",
"escape-html": "^1.0.3",
"express": "~4.16.3",
"fs-extra": "^6.0.1",
"minimist": "^1.2.0",
"morgan": "~1.9.0",
"multer": "^1.3.1",
"mysql": "^2.16.0",
"require-dir": "^1.0.0",
"serve-favicon": "~2.5.0",
"xtemplate": "~4.6.0"
},
"engines": {
"node": ">=6.5.0"
},
"devDependencies": {
"autoprefixer": "^8.6.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"back2front-cli": "^2.3.3",
"postcss": "^6.0.22",
"postcss-load-config": "^1.2.0",
"postcss-px2rem": "^0.3.0",
"precss": "^3.1.2"
},
"browserslist": [
"> 1%",
"last 20 versions",
"not ie <= 8"
]
}