-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.38 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
102
103
104
105
106
{
"name": "todo-app-umai-test-task",
"version": "0.1.1",
"author": "Anton Balashov",
"private": true,
"scripts": {
"start": "nodemon",
"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:prod-github-pages": "cross-env-shell NODE_ENV=production BUILD_ENV=production DEPLOY_TARGET=github-pages npm run build:config",
"build:analyze": "run-s build:prod analyze",
"analyze": "webpack-bundle-analyzer \"./build/build-stats.json\" build",
"lint": "run-s lint:javascript lint:css",
"lint:javascript": "jest --projects \"./jest/jest.eslint.config.json\"",
"lint:css": "jest --projects \"./jest/jest.stylelint.config.json\"",
"test": "jest --config=\"./jest/jest.test.config.json\"",
"test:watch": "npm test -- --watch",
"test:debug": "node --inspect-brk \"./node_modules/.bin/jest\" --runInBand --config=\"./jest/jest.test.config.json\"",
"soundcheck": "jest --config=\"./jest/jest.config.json\"",
"prettier": "prettier-eslint --list-different \"./source/**/*.js\"; prettier-eslint --write \"./source/**/*.js\"",
"deploy": "run-s build:prod-github-pages gh-pages",
"gh-pages": "gh-pages -d build"
},
"dependencies": {
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"connected-react-router": "^6.5.2",
"formik": "^1.5.8",
"history": "^4.10.1",
"immutable": "^4.0.0-rc.12",
"moment": "^2.24.0",
"react": "^16.10.2",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-saga": "^1.1.1",
"reset-css": "^5.0.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "~7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "~7.0.0-beta.54",
"@babel/plugin-proposal-decorators": "~7.0.0-beta.54",
"@babel/plugin-proposal-function-bind": "~7.0.0-beta.54",
"@babel/plugin-proposal-object-rest-spread": "~7.0.0-beta.54",
"@babel/polyfill": "~7.0.0-beta.54",
"@babel/preset-env": "~7.0.0-beta.54",
"@babel/preset-react": "~7.0.0-beta.54",
"@babel/register": "~7.0.0-beta.54",
"@hot-loader/react-dom": "^16.10.2",
"babel-core": "^7.0.0-0",
"babel-eslint": "8.2.6",
"babel-jest": "~23.4.0",
"babel-loader": "~7.1.5",
"chalk": "2.4.1",
"clean-webpack-plugin": "~0.1.19",
"cross-env": "~5.2.0",
"css-loader": "1.0.0",
"css-mqpacker": "~7.0.0",
"cssnano": "~4.0.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "~3.3.4",
"eslint": "5.2.0",
"eslint-plugin-react": "~7.10.0",
"favicons-webpack-plugin": "~0.0.9",
"file-loader": "1.1.11",
"gh-pages": "~1.2.0",
"git-repo-name": "~0.6.0",
"html-webpack-plugin": "3.2.0",
"html-webpack-template": "~6.2.0",
"identity-obj-proxy": "~3.0.0",
"jest": "^23.4.1",
"jest-runner-eslint": "~0.6.0",
"jest-runner-stylelint": "~1.0.0",
"mini-css-extract-plugin": "~0.4.1",
"nodemon": "~1.18.3",
"npm-run-all": "^4.1.3",
"postcss-easing-gradients": "~3.0.0",
"postcss-font-smoothing": "~0.1.0",
"postcss-icss-selectors": "~2.0.3",
"postcss-import": "~11.1.0",
"postcss-loader": "~2.1.6",
"postcss-preset-env": "~5.3.0",
"postcss-reporter": "~5.0.0",
"prettier-eslint-cli": "~4.7.1",
"prop-types": "~15.6.2",
"react-dev-utils": "^5.0.1",
"react-hot-loader": "^4.12.15",
"redux-logger": "^3.0.6",
"redux-saga-test-plan": "~3.7.0",
"style-loader": "0.21.0",
"stylelint": "~9.4.0",
"url-loader": "~1.0.1",
"webpack": "4.16.2",
"webpack-bundle-analyzer": "~2.13.1",
"webpack-cli": "~3.1.0",
"webpack-dev-server": "~3.1.5",
"webpack-merge": "~4.1.3",
"webpack-serve": "~2.0.2",
"webpack-stylish": "~0.1.8"
}
}