This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.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
{
"name": "webpacker",
"version": "4.6.0",
"description": "Webpack configuration manager",
"main": "webpacker.js",
"bin": {
"webpacker": "./bin/index.js"
},
"scripts": {
"lint:javascript": "eslint .",
"lint:markdown": "markdownlint README.md",
"lint": "npm run lint:javascript && npm run lint:markdown",
"jest": "jest .",
"c": "git-cz",
"test": "npm run lint && npm run jest",
"release": "xyz --repo [email protected]:wearereasonablepeople/webpacker.git --increment"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wearereasonablepeople/webpacker.git"
},
"author": "Eric Nijman <[email protected]> (https://github.com/indebanvdhamer)",
"license": "ISC",
"bugs": {
"url": "https://github.com/wearereasonablepeople/webpacker/issues"
},
"homepage": "https://github.com/wearereasonablepeople/webpacker#readme",
"dependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/polyfill": "^7.11.5",
"@babel/runtime": "^7.12.0",
"@babel/traverse": "^7.12.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-ramda": "^2.0.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.0.3",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-react": "^7.21.4",
"file-loader": "^6.1.1",
"fork-ts-checker-webpack-plugin": "^1.6.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^1.0.6",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.20",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^1.0.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"postcss-will-change-transition": "^1.2.0",
"sass-loader": "^7.3.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^1.4.5",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webapp-webpack-plugin": "^2.7.1",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "3.4.1",
"webpack-dev-server": "^3.11.0",
"ws": "^7.3.1",
"yargs": "^16.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-config-warp": "^3.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^24.1.0",
"git-cz": "^4.7.1",
"jest-cli": "^26.5.3",
"jest-config": "^26.5.3",
"markdownlint-cli": "^0.24.0",
"npm": "^6.14.8",
"uninstall": "0.0.0",
"webpacker-cyclejs-sample": "file:./samples/cyclejs",
"webpacker-react-and-favicon-sample": "file:./samples/react-and-favicon",
"webpacker-react-and-graphql-sample": "file:./samples/react-and-graphql",
"webpacker-react-and-scss-sample": "file:./samples/react-and-scss",
"webpacker-react-emotion-ramda-hmr-sample": "file:./samples/react-emotion-ramda-hmr",
"webpacker-typescript-sample": "file:./samples/react-typescript",
"xyz": "^4.0.0"
}
}