-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
83 lines (83 loc) · 2.3 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
{
"name": "shakapacker",
"version": "8.0.2",
"description": "Use webpack to manage app-like JavaScript modules in Rails",
"homepage": "https://github.com/shakacode/shakapacker",
"bugs": {
"url": "https://github.com/shakacode/shakapacker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakacode/shakapacker.git"
},
"license": "MIT",
"author": "David Heinemeier Hansson <[email protected]>, Justin Gordon <[email protected]>",
"main": "package/index.js",
"types": "package/index.d.ts",
"files": [
"package",
"lib/install/config/shakapacker.yml"
],
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"js-yaml": "^4.1.0",
"path-complete-extname": "^1.0.0"
},
"devDependencies": {
"babel-loader": "^8.2.4",
"compression-webpack-plugin": "^9.0.0",
"esbuild-loader": "^2.18.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"memory-fs": "^0.5.0",
"prettier": "^3.2.5",
"swc-loader": "^0.1.15",
"thenify": "^3.3.1",
"webpack": "^5.72.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.9",
"@types/babel__core": "^7.0.0",
"@types/webpack": "^5.0.0",
"babel-loader": "^8.2.4 || ^9.0.0",
"compression-webpack-plugin": "^9.0.0 || ^10.0.0|| ^11.0.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-cli": "^4.9.2 || ^5.0.0",
"webpack-dev-server": "^4.9.0 || ^5.0.0",
"webpack-merge": "^5.8.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"@types/babel__core": {
"optional": true
},
"@types/webpack": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 14",
"yarn": ">=1 <5"
},
"publishConfig": {
"access": "public"
}
}