-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 2.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"author": "Vladimir Grinenko",
"name": "bem-express",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "[email protected]:tadatuta/bem-express.git"
},
"engines": {
"node": ">=4"
},
"browserslist": [
"ie >= 10",
"opera 12.1",
"> 2%",
"last 2 versions"
],
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.2",
"connect-slashes": "^1.3.1",
"cookie-parser": "^1.4.1",
"cookie-session": "^1.2.0",
"csurf": "^1.9.0",
"debug-http": "^1.1.0",
"enb-bem-tmpl-specs": "^1.3.1",
"enb-magic-factory": "^0.5.0",
"errorhandler": "^1.4.3",
"es6-promise": "^4.1.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"gh-got": "^5.0.0",
"http-errors": "^1.6.2",
"lodash": "^4.11.2",
"marked": "^0.3.5",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"node-eval": "^1.1.0",
"object-assign": "^4.1.0",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.2"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"bem-components": "^5.1.0",
"bem-core": "^4.2.1",
"bem-font-awesome-icons": "^1.0.2",
"bem-history": "^4.0.0",
"bem-textarea-editor": "^1.0.1",
"bemhint": "^0.7.0",
"bemhint-css-naming": "^1.0.1",
"bemhint-deps-specification": "^1.0.0",
"bemhint-fs-naming": "^1.0.0",
"chokidar": "^1.6.1",
"chokidar-cli": "^1.2.0",
"enb": "^1.3.0",
"enb-bem-i18n": "^1.1.1",
"enb-bem-techs": "^2.2.1",
"enb-bemxjst": "^7.5.0",
"enb-bemxjst-i18n": "github:tadatuta/enb-bemxjst-i18n#acd48e231ba6f23bf00274b56d403b18ec338a4c",
"enb-borschik": "^3.0.0",
"enb-js": "^1.1.0",
"enb-postcss": "^1.3.0",
"eslint": "^3.19.0",
"eslint-config-pedant": "^0.8.0",
"eslint-plugin-bem-xjst": "^2.1.0",
"git-hooks": "^1.0.2",
"node-notifier": "^4.6.1",
"nodemon": "^1.9.2",
"postcss-calc": "^5.3.1",
"postcss-each": "^0.9.3",
"postcss-for": "^2.1.1",
"postcss-import": "^9.0.0",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^3.0.0",
"postcss-simple-vars": "^3.0.0",
"postcss-url": "^5.1.2",
"prismjs": "^1.8.1",
"rebem-css": "^0.2.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"tiny-lr": "^1.0.3",
"whatwg-fetch": "^2.0.3",
"ym": "^0.1.2"
},
"scripts": {
"start": "node server",
"postinstall": "npm run make",
"docker-build": "docker build . -t syngularity/bem-forum:latest",
"docker-push": "docker push syngularity/bem-forum:latest",
"make": "enb make",
"tmpl-specs": "enb make tmpl-specs",
"dev": "npm run make && nodemon",
"watch": "chokidar '*.blocks/**' --initial -c 'enb make && notify -t bem-express -m Built'",
"test": "npm run lint && npm run make && npm run tmpl-specs",
"lint": "eslint . && bemhint . && stylelint *.blocks/**/*.css"
},
"private": true
}