-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.56 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
{
"name": "smdbox",
"version": "1.1.3",
"main": "src/index.jsx",
"repository": "https://github.com/semrush/smdbox",
"author": "Semrush",
"license": "MIT",
"scripts": {
"lint": "eslint ./app --ext .js --ext .jsx",
"lintfix": "eslint ./app --ext .js --ext .jsx --fix",
"dev": "NODE_ENV=development webpack-dev-server --config webpack/webpack.dev.js",
"prod": "NODE_ENV=production webpack --config webpack/webpack.prod.js --progress -p",
"dist": "NODE_ENV=production IS_DIST=true webpack --config webpack/webpack.prod.js --progress -p",
"clean": "node webpack/clean.js",
"csscomb": "csscomb ./app/components"
},
"engines": {
"node": ">=5.10",
"yarn": ">=1.0.1"
},
"dependencies": {
"axios": "0.18.1",
"bem-cl": "1.0.2",
"copy-to-clipboard": "3.0.6",
"lodash": "4.17.19",
"prop-types": "15.6.0",
"react": "16.12.0",
"react-bootstrap": "0.33.1",
"react-dom": "16.12.0",
"react-hot-loader": "3.1.3",
"react-json-tree": "0.10.9",
"react-jsonschema-form": "^2.0.0-alpha.1",
"react-redux": "6.0.1",
"redux": "4.0.5",
"redux-saga": "0.14.3",
"reselect": "3.0.1",
"url-parse": "1.1.9",
"uuid": "3.1.0"
},
"devDependencies": {
"autodll-webpack-plugin": "0.3.7",
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "8.0.2",
"babel-loader": "6.2.10",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.20.0",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.16.0",
"babel-runtime": "6.23.0",
"circular-dependency-plugin": "2.0.0",
"clean-webpack-plugin": "0.1.15",
"css-loader": "0.26.1",
"csscomb": "^4.2.0",
"eslint": "4.18.2",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"express": "4.15.3",
"extract-text-webpack-plugin": "latest",
"fs": "0.0.2",
"html-webpack-plugin": "2.24.1",
"node-sass": "^4.13.0",
"postcss-loader": "1.3.2",
"resolve-url-loader": "2.0.0",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"svg-sprite-loader": "0.3.0",
"url-loader": "0.5.7",
"webpack": "3.10.0",
"webpack-dev-middleware": "1.12.2",
"webpack-dev-server": "2.9.7",
"webpack-hot-middleware": "2.21.0"
}
}