-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 4.05 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
{
"name": "react-online-hometask",
"version": "0.0.1",
"author": "Dima Vakatsiienko <[email protected]>",
"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":
"cross-env-shell NODE_ENV=production BUILD_ENV=production REPOSITORY_NAME=react-online-hometask 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 --print-width 80 --list-different 'source/**/*.js'; prettier-eslint --print-width 80 --write 'source/**/*.js'",
"deploy": "run-s soundcheck build:prod-github gh-pages",
"gh-pages": "gh-pages -d build"
},
"dependencies": {
"classnames": "~2.2.5",
"gsap": "~1.20.2",
"moment": "~2.22.0",
"react": "~16.3.1",
"react-dom": "~16.3.1",
"react-transition-group": "~2.3.0",
"reset-css": "~3.0.0",
"socket.io-client": "~2.1.0"
},
"devDependencies": {
"@babel/core": "~7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "~7.0.0-beta.46",
"@babel/plugin-proposal-decorators": "~7.0.0-beta.46",
"@babel/plugin-proposal-function-bind": "~7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "~7.0.0-beta.46",
"@babel/polyfill": "~7.0.0-beta.46",
"@babel/preset-env": "~7.0.0-beta.46",
"@babel/preset-react": "~7.0.0-beta.46",
"@babel/register": "~7.0.0-beta.46",
"babel-core": "^7.0.0-0",
"babel-eslint": "~8.2.2",
"babel-jest": "~22.4.3",
"babel-loader": "^8.0.0-beta",
"chalk": "~2.4.0",
"clean-webpack-plugin": "~0.1.19",
"cross-env": "~5.1.4",
"css-loader": "~0.28.4",
"css-mqpacker": "~6.0.2",
"cssnano": "~4.0.0-rc.2",
"enzyme": "~3.3.0",
"enzyme-adapter-react-16": "~1.1.0",
"enzyme-to-json": "~3.3.3",
"eslint": "~4.19.1",
"eslint-plugin-react": "~7.7.0",
"file-loader": "~1.1.11",
"gh-pages": "~1.1.0",
"html-webpack-plugin": "~3.2.0",
"html-webpack-template": "~6.2.0",
"husky": "~0.14.3",
"identity-obj-proxy": "~3.0.0",
"jest": "~22.4.3",
"jest-runner-eslint": "~0.4.0",
"jest-runner-stylelint": "~1.0.0",
"mini-css-extract-plugin": "~0.4.0",
"nodemon": "~1.17.3",
"npm-run-all": "~4.1.2",
"postcss-cssnext": "~3.1.0",
"postcss-custom-properties": "~7.0.0",
"postcss-easing-gradients": "~2.0.1",
"postcss-font-smoothing": "~0.1.0",
"postcss-icss-selectors": "~2.0.3",
"postcss-import": "~11.1.0",
"postcss-loader": "~2.1.0",
"postcss-reporter": "~5.0.0",
"postcss-url": "~7.3.1",
"prettier-eslint-cli": "~4.7.1",
"prop-types": "~15.6.1",
"react-dev-utils": "~5.0.1",
"react-hot-loader": "~4.1.1",
"style-loader": "~0.21.0",
"stylelint": "~9.2.0",
"webpack": "~4.6.0",
"webpack-bundle-analyzer": "~2.11.1",
"webpack-cli": "~2.0.15",
"webpack-dev-server": "~3.1.3",
"webpack-merge": "~4.1.2"
}
}