-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
130 lines (130 loc) · 3.56 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@enact/cli",
"version": "7.0.0-alpha.1",
"description": "Full-featured build environment tool for Enact applications.",
"main": "index.js",
"author": "Jason Robitaille <jason.robitaille@lge.com>",
"repository": {
"type": "git",
"url": "https://github.com/enactjs/cli.git"
},
"homepage": "https://enactjs.com",
"license": "Apache-2.0",
"bin": {
"enact": "./bin/enact.js"
},
"engines": {
"node": ">= 18.12.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"
},
"keywords": [
"enact",
"toolkit",
"react",
"mobile",
"TV",
"LG",
"webOS",
"upupdowndownleftrightleftrightbastart"
],
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@enact/dev-utils": "^7.0.0-alpha.1",
"@enact/template-sandstone": "^3.0.0-alpha.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-preset-enact": "^0.1.8",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chalk": "^5.3.0",
"core-js": "3.22.8",
"cross-spawn": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^6.0.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"eslint": "^8.57.0",
"eslint-config-enact": "^5.0.0-alpha.1",
"eslint-webpack-plugin": "^4.2.0",
"expose-loader": "^5.0.0",
"file-loader": "^6.2.0",
"filesize": "^10.1.2",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"global-modules": "^2.0.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"less-plugin-npm-import": "^2.1.0",
"license-checker": "^25.0.1",
"mini-css-extract-plugin": "^2.9.0",
"minimist": "^1.2.8",
"node-polyfill-webpack-plugin": "^3.0.0",
"postcss": "^8.4.39",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-global-import": "^1.0.6",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.5.15",
"postcss-resolution-independence": "^1.1.6",
"prompts": "^2.4.2",
"react": "^18.3.1",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"react-test-renderer": "^18.3.1",
"resolution-independence": "^1.0.0",
"resolve": "^1.22.8",
"sass-loader": "^14.2.1",
"semver": "^7.6.3",
"source-map-loader": "^5.0.0",
"strip-ansi": "^7.1.0",
"style-loader": "^4.0.0",
"tar": "^7.0.1",
"terser-webpack-plugin": "^5.3.10",
"validate-npm-package-name": "^5.0.1",
"webpack": "^5.93.0",
"webpack-dev-server": "^5.0.4"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"peerDependencies": {
"typescript": "^3.2.1 || ^4 || ^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2"
}
}