-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
69
{
"name": "bem-site-engine",
"description": "BEM CMS based on Express framework",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-site-engine.git"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"bem-md-renderer": "~0.0.1",
"express": "3.4.7",
"connect-slashes": "~1.2.0",
"terror": "0.3.4",
"json-stringify-safe": "5.0.0",
"cron": "1.0.1",
"request": "2.33.0",
"mime": "1.2.11",
"fs-extra": "~0.8.1",
"susanin": "~0.1.11",
"nconf": "~0.6.9",
"vow": "~0.4.x",
"vow-fs": "0.3.0",
"lodash": "~2.4.1",
"intel": "1.0.0-b2",
"sha1": "~1.1.0",
"marked": "*",
"semver": "~2.3.0",
"js2xmlparser": "*",
"github": "*",
"yandex-disk": "0.0.6",
"coa": "~0.4.0",
"deep-extend": "~0.2.10",
"js-beautify": "1.5.1",
"luster": "~0.5.0"
},
"devDependencies": {
"bem-site-codestyle": "~0.1.0",
"borschik": "~1.0.5",
"bower": "~1.3.12",
"enb": "~0.13.4",
"enb-autoprefixer": "~0.1.1",
"enb-bem-i18n": "^0.2.1",
"enb-bembundle": "~1.0.2",
"enb-bemxjst": "~1.3.4",
"enb-borschik": "~1.0.4",
"enb-diverse-js": "*",
"enb-modules": "*",
"enb-stylus": "^1.1.4",
"inherit": "~2.2.2"
},
"scripts": {
"start": "node bin/app.js",
"postinst": "npm run prepare_folders && npm run prepare_configs && bower i",
"prepare_folders": "mkdir -p logs backups cache cache/branch cache/tag",
"prepare_configs": "ln -snf ${NODE_ENV:-dev} configs/current && ln -sfn configs/current/borschik .borschik",
"make": "npm install && npm run postinst && npm run build && node bin/data.js && npm start",
"build": "YENV=${NODE_ENV:-development} enb make",
"clean": "enb make clean && rm -rf node_modules libs cache backups logs",
"clean_logs": "rm -rf logs/*",
"clean_cache": "rm -rf cache/*",
"clean_data": "rm -rf backups/*",
"lint": "jscs . && jshint-groups"
},
"author": "[email protected]",
"readmeFilename": "README.md"
}