forked from bem/bem-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.39 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
{
"author": "Vladimir Grinenko",
"name": "bem-express",
"version": "2.3.0",
"repository": {
"type": "git",
"url": "git@github.com:tadatuta/bem-express.git"
},
"engines": {
"node": ">=0.12"
},
"browserslist": [
"ie >= 10",
"opera 12.1",
"> 2%",
"last 2 versions"
],
"dependencies": {
"axios": "^0.16.2",
"bem-components": "^6.0.1",
"bem-core": "^4.2.1",
"ym": "^0.1.2"
},
"devDependencies": {
"bem-tools-core": "0.0.3",
"bem-tools-create": "^2.2.0",
"bemhint": "^0.9.1",
"bemhint-css-naming": "^1.0.1",
"bemhint-deps-specification": "^1.0.0",
"bemhint-fs-naming": "^1.0.0",
"body-parser": "^1.17.2",
"chokidar": "^1.7.0",
"chokidar-cli": "^1.2.0",
"compression": "^1.7.0",
"connect-slashes": "^1.3.1",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.2",
"csurf": "^1.9.0",
"debug-http": "^1.1.0",
"enb": "^1.5.1",
"enb-bem-techs": "^2.2.2",
"enb-bemxjst": "^8.6.7",
"enb-borschik": "^3.0.0",
"enb-js": "^1.1.1",
"enb-postcss": "^2.0.0",
"errorhandler": "^1.5.0",
"eslint": "^4.2.0",
"eslint-config-pedant": "^0.10.0",
"eslint-plugin-bem-xjst": "^2.2.0",
"express": "^4.15.3",
"express-session": "^1.15.4",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"node-eval": "^1.1.0",
"node-notifier": "^5.1.2",
"node-notifier-cli": "^1.0.1",
"nodemon": "^1.11.0",
"object-assign": "^4.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pobem": "^1.1.2",
"postcss": "^6.0.8",
"postcss-cssnext": "^3.0.2",
"postcss-each": "^0.10.0",
"postcss-for": "^2.1.1",
"postcss-import": "^10.0.0",
"postcss-nested": "^2.0.4",
"postcss-reporter": "^4.0.0",
"postcss-simple-vars": "^4.0.0",
"postcss-url": "^7.1.1",
"serve-favicon": "^2.4.3",
"serve-static": "^1.12.3",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"tiny-lr": "^1.0.5"
},
"scripts": {
"start": "node server",
"postinstall": "npm run drop-cache && npm run make",
"make": "enb make",
"drop-cache": "rm -rf .enb/tmp",
"dev": "npm run make && nodemon",
"watch": "chokidar 'components/**' --initial -c 'enb make && notify -t bem-express -m Built'",
"test": "npm run lint && npm run make",
"lint": "eslint . && bemhint . && stylelint components/**/*.css"
},
"private": true
}