-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.32 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@pureartisan/swagger",
"version": "1.0.0",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "[email protected]:pureartisan/swagger.git"
},
"dependencies": {
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.52",
"@material-ui/styles": "^4.9.13",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"swagger-ui-react": "^3.25.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@svgr/webpack": "^5.4.0",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-imports": "^2.0.0",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"elementtree": "^0.1.7",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"expose-loader": "^0.7.5",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"ionicons": "^5.0.1",
"jimp": "^0.10.2",
"jsonfile": "^6.0.1",
"lint-staged": "^10.1.3",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.5",
"mocha": "^7.1.1",
"node-sass": "^4.13.1",
"npm": "^6.14.4",
"postcss-loader": "^3.0.0",
"replace": "^1.2.0",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"style-loader": "^1.1.3",
"stylelint": "^13.3.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"xml2json": "^0.12.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "cross-env NODE_ENV=development HOST=localhost PORT=8080 webpack-dev-server",
"lint:scss": "stylelint ./src/**/*.scss --syntax scss",
"lint:scss:fix": "stylelint ./src/**/*.scss --syntax scss --fix",
"lint:js": "./node_modules/.bin/eslint ./src --ext .js,.jsx",
"lint:js:fix": "npm run lint:js --fix --",
"test": "echo \"No tests (yet!) -- submit a PR?\" && exit 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npm run --silent lint:js:fix",
"git add"
],
"src/**/*.scss": [
"npm run --silent lint:scss:fix",
"git add"
]
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}