-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.48 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.48 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
{
"name": "eslint-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "npm run lint && cross-env NODE_ENV=production webpack --mode production",
"build1": "npm run lint && cross-env NODE_ENV=production webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.js\"",
"fix": "npm run format && eslint --fix --ext .js src",
"lint": "npm run format && npm run fix && eslint --ext .js src",
"doc": "rm -rf docs;jsdoc -c conf.json -r"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"docdash": "^1.2.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"html-withimg-loader": "^0.1.16",
"husky": "^4.2.5",
"jsdoc": "^3.6.4",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lint-staged": "^10.1.5",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.4",
"progress-bar-webpack-plugin": "^2.1.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-encoding-plugin": "^0.3.1",
"yargs-parser": "^18.1.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"axios": "^0.19.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"xl-tools": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}