-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "@enact/dev-utils",
"version": "7.0.0-alpha.1",
"description": "A collection of development utilities for Enact apps.",
"main": "index.js",
"author": "Jason Robitaille <[email protected]>",
"repository": "https://github.com/enactjs/dev-utils",
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix"
},
"prettier": {
"printWidth": 120,
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"eslintIgnore": [
"plugins/SnapshotPlugin/snapshot-helper.js",
"plugins/SnapshotPlugin/mock-window.js"
],
"dependencies": {
"browserslist": "^4.23.1",
"chalk": "^5.3.0",
"console.mute": "^0.3.0",
"core-js": "3.22.8",
"fast-glob": "^3.3.2",
"fbjs": "^3.0.5",
"find-cache-dir": "^5.0.0",
"graceful-fs": "^4.2.11",
"import-fresh": "^3.3.0",
"loader-utils": "^3.3.1",
"mock-require": "^3.0.3",
"resolve": "^1.22.8",
"tapable": "^2.2.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-sources": "^3.2.3"
},
"peerDependencies": {
"html-webpack-plugin": ">=5.0.0",
"webpack": ">=5.0.0"
},
"peerDependenciesMeta": {
"html-webpack-plugin": {
"optional": true
},
"webpack": {
"optional": true
}
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-enact": "^5.0.0-alpha.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.3.2",
"react": "^18.3.1",
"webpack": "^5.92.1"
}
}