-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.62 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.62 KB
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
{
"name": "react-workshop",
"version": "1.0.2",
"author": "Dima Vakatsiienko <dvakatsiienko@lectrum.io>",
"private": true,
"scripts": {
"start": "cross-env-shell NODE_ENV=development nodemon",
"build:base": "webpack --config=\"./webpack/webpack.config.babel.js\" --env production --display-reasons",
"build:prod": "cross-env-shell NODE_ENV=production npm run build:base",
"build:github-pages": "cross-env-shell NODE_ENV=production DEPLOY_TARGET=github-pages npm run build:base",
"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.js\"",
"lint:css": "jest --projects \"./jest/jest.stylelint.config.js\"",
"test": "jest --config=\"./jest/jest.test.config.js\"",
"test:watch": "npm test -- --watch",
"test:debug": "node --inspect-brk jest --runInBand --config=\"./jest/jest.test.config.js\"",
"soundcheck": "jest --config=\"./jest/jest.config.js\"",
"prettier": "prettier-eslint --list-different \"./source/**/*.js\"; prettier-eslint --write \"./source/**/*.js\"",
"deploy": "run-s build:github-pages gh-pages",
"gh-pages": "gh-pages -d build",
"commit": "npx git-cz"
},
"dependencies": {
"react": "16.5.0",
"react-dom": "16.5.0",
"sanitize.css": "7.0.3"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-decorators": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@lectrum/eslint-config-core": "1.1.2",
"babel-core": "^7.0.0-0",
"babel-eslint": "9.0.0",
"babel-jest": "23.4.2",
"babel-loader": "8.0.2",
"chalk": "2.4.1",
"clean-webpack-plugin": "0.1.19",
"commitizen": "2.10.1",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"css-mqpacker": "7.0.0",
"cssnano": "4.1.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.6.0",
"enzyme-adapter-react-16": "1.5.0",
"enzyme-to-json": "3.3.4",
"eslint": "5.5.0",
"eslint-plugin-react": "7.11.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "2.0.0",
"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.5.0",
"jest-runner-eslint": "0.6.0",
"jest-runner-stylelint": "1.0.0",
"mini-css-extract-plugin": "0.4.2",
"nodemon": "1.18.4",
"npm-run-all": "4.1.3",
"postcss-easing-gradients": "3.0.1",
"postcss-font-smoothing": "0.1.0",
"postcss-icss-selectors": "2.0.3",
"postcss-import": "12.0.0",
"postcss-loader": "3.0.0",
"postcss-preset-env": "5.3.0",
"postcss-reporter": "6.0.0",
"prettier-eslint-cli": "4.7.1",
"prop-types": "15.6.2",
"react-dev-utils": "5.0.2",
"react-hot-loader": "4.3.6",
"style-loader": "0.23.0",
"stylelint": "9.5.0",
"url-loader": "1.1.1",
"webpack": "4.17.2",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8",
"webpack-merge": "4.1.4",
"webpack-serve": "2.0.2",
"webpack-stylish": "0.1.8"
}
}