-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.94 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
{
"name": "react-personal-project",
"version": "2.4.0",
"author": "Dima Vakatsiienko <[email protected]>",
"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: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": {
"classnames": "2.2.6",
"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",
"babel-core": "^7.0.0-0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"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",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"enzyme-to-json": "3.3.5",
"eslint": "5.12.0",
"eslint-plugin-react": "7.12.4",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"git-repo-name": "1.0.1",
"gsap": "^1.20.2",
"html-webpack-plugin": "3.2.0",
"html-webpack-template": "6.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"jest-runner-eslint": "0.7.1",
"jest-runner-stylelint": "1.0.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",
"react-transition-group": "^4.1.1",
"style-loader": "0.23.1",
"stylelint": "9.10.0",
"url-loader": "1.1.2",
"webpack": "4.28.4",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14",
"webpack-merge": "4.2.1"
}
}