-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 2.78 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
{
"name": "todo-immutable",
"version": "0.0.1",
"author": "",
"private": true,
"scripts": {
"start": "cross-env-shell NODE_ENV=development BUILD_ENV=development webpack-dev-server --config=\"./webpack/webpack.config.babel.js\" --env development",
"build:config": "webpack --config=\"./webpack/webpack.config.babel.js\" --env production --display-reasons",
"build:dev": "cross-env-shell NODE_ENV=production BUILD_ENV=development npm run build:config",
"build:prod": "cross-env-shell NODE_ENV=production BUILD_ENV=production npm run build:config",
"build:analyze": "run-s build:prod analyze",
"analyze": "webpack-bundle-analyzer \"./build/build-stats.json\" build",
"prettier": "prettier-eslint --list-different \"./source/**/*.js\"; prettier-eslint --write \"./source/**/*.js\""
},
"dependencies": {
"classnames": "2.2.6",
"faker": "4.1.0",
"immutable": "4.0.0-rc.12",
"moment": "2.23.0",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-flip-move": "3.0.3",
"reset-css": "4.0.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-decorators": "7.2.3",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@lectrum/eslint-config-core": "1.1.15",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"chalk": "2.4.2",
"clean-webpack-plugin": "1.0.0",
"cross-env": "5.2.0",
"css-loader": "2.1.0",
"css-mqpacker": "7.0.0",
"cssnano": "4.1.8",
"eslint": "5.12.1",
"eslint-plugin-react": "7.12.4",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"html-webpack-template": "6.2.0",
"mini-css-extract-plugin": "0.5.0",
"npm-run-all": "4.1.5",
"postcss-easing-gradients": "3.0.1",
"postcss-font-smoothing": "0.1.0",
"postcss-icss-selectors": "2.0.3",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.5.0",
"postcss-reporter": "6.0.1",
"prettier-eslint-cli": "4.7.1",
"prop-types": "15.6.2",
"react-dev-utils": "7.0.1",
"react-hot-loader": "4.6.3",
"style-loader": "0.23.1",
"stylelint": "9.10.1",
"url-loader": "1.1.2",
"webpack": "4.29.0",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14",
"webpack-merge": "4.2.1"
}
}