-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"version": "1.3.0",
"license": "WTFPL",
"scripts": {
"lint": "lint-staged",
"start": "webpack-dev-server --mode development --progress --colors",
"clean": "rm -rf ./dist",
"build": "npm run clean && webpack --mode production",
"release": "npm run build && npm run publish",
"publish": "rsync -avh --chmod=ugo=rwX dist/ wsevents@wsevents.ru:domains/wsevents.ru/public_html",
"analyze-bundle": "webpack --mode production --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.3",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"node-fetch": "^2.6.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"style-loader": "^1.1.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.6.1",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-autobind": "^1.0.6",
"react-dom": "^16.12.0",
"whatwg-fetch": "^3.0.0"
}
}