-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "@fzed51/webpack-config",
"version": "3.3.0",
"description": "configuration de base pour webpack",
"main": "./src/config.js",
"scripts": {
"test": "node ./test/test.js"
},
"bin": {
"webpack-config-init": "./bin/webpack-config-init.js"
},
"keywords": [
"webpack",
"config",
"react",
"typescript"
],
"author": "Fabien Sanchez <fzed51+code@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/fzed51/webpack-config.git"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-json-strings": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.20",
"@types/webpack": "^5.28.0",
"babel-loader": "^8.2.3",
"core-js": "^3.21.1",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"inquirer": "^8.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-thunk": "^2.4.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}