forked from rails/webpacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "@rails/webpacker",
"version": "6.0.0-beta.5",
"description": "Use webpack to manage app-like JavaScript modules in Rails",
"main": "package/index.js",
"files": [
"package",
"lib/install/config/webpacker.yml"
],
"engines": {
"node": ">=10.22.1 || ^12 || >=14",
"yarn": ">=1 <3"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.0.1",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"compression-webpack-plugin": "^7.1.0",
"core-js": "^3.8.0",
"glob": "^7.1.6",
"js-yaml": "^3.14.0",
"path-complete-extname": "^1.0.0",
"pnp-webpack-plugin": "^1.6.4",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.11.0",
"webpack-assets-manifest": "^5.0.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.7.2",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"jest": "^26.5.3"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/))\\.jsx?$",
"roots": [
"<rootDir>/package"
]
},
"scripts": {
"test": "jest",
"lint": "eslint package/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rails/webpacker.git"
},
"author": "David Heinemeier Hansson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rails/webpacker/issues"
},
"homepage": "https://github.com/rails/webpacker"
}