-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.58 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.58 KB
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
{
"author": "Sergey Berezhnoy",
"name": "catboost-viewer",
"version": "1.0.0",
"engines": {
"node": ">=6.9.1"
},
"browserslist": [
"ie >= 10",
"opera 12.1",
"> 2%",
"last 2 versions"
],
"dependencies": {
"bem-font-awesome-icons": "^1.0.2",
"body-parser": "^1.15.0",
"coa": "^1.0.1",
"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",
"errorhandler": "^1.4.3",
"express": "^4.13.4",
"express-session": "^1.13.0",
"growing-file": "^0.1.3",
"lodash": "^4.17.4",
"morgan": "^1.7.0",
"node-eval": "^1.1.0",
"object-assign": "^4.1.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"plotly.js": "^1.27.1",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.2",
"socket.io": "^1.7.3"
},
"devDependencies": {
"husky": "^0.13.3",
"autoprefixer": "^6.6.1",
"bem-components": "^6.0.0",
"bem-core": "^4.2.0",
"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-techs": "^2.2.1",
"enb-bemxjst": "^8.6.7",
"enb-borschik": "^2.4.0",
"enb-js": "^1.1.0",
"enb-postcss": "^1.3.0",
"eslint": "^3.14.0",
"eslint-config-pedant": "^0.8.0",
"eslint-plugin-bem-xjst": "^2.1.0",
"node-notifier": "^5.1.2",
"node-notifier-cli": "^1.0.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",
"rebem-css": "^0.2.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^16.0.0",
"tiny-lr": "^1.0.3",
"ym": "^0.1.2"
},
"bin": "./bin/catboost-viewer",
"files": [
"common.blocks",
"desktop.bundles",
"server",
"static",
"bin",
"README.md"
],
"scripts": {
"start": "node server",
"make": "enb make",
"drop-cache": "rm -rf .enb/tmp",
"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",
"lint": "eslint . && bemhint . && stylelint *.blocks/**/*.css",
"prepublishOnly": "npm run drop-cache && YENV=production npm run make",
"precommit": "npm run lint",
"prepush": "npm test"
}
}