generated from dargaCode/webpack-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 4.62 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "darga-webpack-react-template",
"version": "1.0.0",
"packageManager": "yarn@3.2.1",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"lint": "tsc --noEmit && eslint src webpack* --ext js,jsx,ts,tsx --fix",
"test": "jest --passWithNoTests",
"predeploy": "npm run build",
"deploy": "npx gh-pages -d dist -m \"Build app and deploy to gh-pages\"",
"storybook": "start-storybook -p 6006 --ci"
},
"main": "./components/App/App.tsx",
"author": "",
"license": "ISC",
"keywords": [],
"sideEffects": [
"*.scss"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.8.3",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addons": "^5.3.13",
"@storybook/preset-scss": "^1.0.2",
"@storybook/preset-typescript": "^1.2.0",
"@storybook/react": "^5.3.13",
"@types/clone-deep": "^4.0.1",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.16",
"@types/react-test-renderer": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"cname-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^3.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "4.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-spellcheck": "0.0.14",
"eslint-plugin-storybook": "^0.5.13",
"file-loader": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-root-plugin": "^0.10.0",
"husky": "^4.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-environment-jsdom": "^26.0.1",
"jest-transform-css": "^2.0.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"moment-locales-webpack-plugin": "^1.1.2",
"prettier": "^1.19.1",
"react-docgen-typescript-loader": "^3.6.0",
"react-test-renderer": "^16.12.0",
"redux-devtools": "^3.7.0",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.2",
"stylelint": "^13.3.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.0.0",
"ts-loader": "^6.2.1",
"typed-scss-modules": "^6.5.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/html-webpack-plugin": "^3.2.2",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.10.1",
"@types/webpack-env": "^1.17.0",
"@types/webpack-merge": "^4.1.5",
"@yarnpkg/core": "^4.0.0-rc.9",
"@yarnpkg/extensions": "^1.1.0-rc.5",
"axios": "^0.27.2",
"clone-deep": "^4.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"path": "^0.12.7",
"postcss": "^7.0.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-moment-proptypes": "^1.7.0",
"react-redux": "^7.0.0",
"react-router-dom": "^5.1.2",
"redux": "^4.2.0",
"sass": "^1.26.5"
},
"description": "",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"husky": {
"hooks": {
"DELETEMEpre-commit": "lint-staged",
"DELETEMEpre-push": "npm test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint",
"git add"
]
}
}