-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "webpackozea",
"version": "2.2.1",
"description": "A base webpack configuration",
"main": "config.js",
"repository": "https://github.com/Kozea/webpackozea",
"author": "Florian Mounier",
"license": "MIT",
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "module"
}
},
"scripts": {
"lint": "eslint *.js"
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0"
},
"peerDependencies": {
"@babel/core": "^7.x.x",
"@babel/plugin-proposal-class-properties": "^7.x.x",
"@babel/plugin-proposal-decorators": "^7.x.x",
"@babel/plugin-proposal-export-default-from": "^7.x.x",
"@babel/plugin-proposal-object-rest-spread": "^7.x.x",
"@babel/plugin-syntax-dynamic-import": "^7.x.x",
"@babel/plugin-transform-runtime": "^7.x.x",
"@babel/preset-env": "^7.x.x",
"@babel/preset-react": "^7.x.x",
"@babel/register": "^7.x.x",
"@babel/runtime": "^7.x.x",
"@mdx-js/loader": "^2.x.x",
"@mdx-js/react": "^2.x.x",
"@sentry/webpack-plugin": "^1.x.x",
"@types/mdx": "^2.x.x",
"babel-loader": "^8.x.x",
"babel-plugin-add-react-static-displayname": "^0.x.x",
"css-loader": "^6.x.x",
"fork-ts-checker-webpack-plugin": "^6.x.x",
"html-webpack-harddisk-plugin": "^2.x.x",
"html-webpack-plugin": "^5.x.x",
"imports-loader": "^1.x.x",
"mini-css-extract-plugin": "^2.x.x",
"path-browserify": "^1.x.x",
"process": "^0.x.x",
"sass": "^1.x.x",
"sass-loader": "^12.x.x",
"ts-loader": "^9.x.x",
"typescript": "^4.x.x",
"webpack": "^5.x.x",
"webpack-bundle-analyzer": "^4.x.x",
"webpack-dev-server": "^4.x.x",
"webpack-manifest-plugin": "^4.x.x",
"webpack-merge": "^5.x.x",
"webpack-node-externals": "^3.x.x"
}
}