-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "perf-puppeteer",
"version": "1.0.0",
"description": "A general template for an Enact Limestone, Sandstone and Agate application.",
"author": "",
"main": "src/index.js",
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"scripts": {
"serve": "cross-env REACT_APP_ENACT_THEME=limestone enact serve",
"serve-limestone": "cross-env REACT_APP_ENACT_THEME=limestone enact serve",
"serve-sandstone": "cross-env REACT_APP_ENACT_THEME=sandstone enact serve",
"serve-agate": "cross-env REACT_APP_ENACT_THEME=agate enact serve",
"pack": "enact pack",
"pack-p": "cross-env REACT_APP_ENACT_THEME=limestone enact pack -p",
"pack-p-limestone": "cross-env REACT_APP_ENACT_THEME=limestone enact pack -p",
"pack-p-sandstone": "cross-env REACT_APP_ENACT_THEME=sandstone enact pack -p",
"pack-p-agate": "cross-env REACT_APP_ENACT_THEME=agate enact pack -p",
"watch": "enact pack --watch",
"clean": "enact clean",
"lint": "enact lint .",
"license": "enact license",
"test": "jest --detectOpenHandles",
"stop": "pkill -f 'serve'",
"test-all": "node ./scripts/test-all.js"
},
"license": "UNLICENSED",
"private": true,
"repository": "",
"enact": {
"theme": "sandstone"
},
"dependencies": {
"@enact/agate": "^3.1.0",
"@enact/core": "^5.4.2",
"@enact/i18n": "^5.4.2",
"@enact/limestone": "enactjs/limestone#develop",
"@enact/sandstone": "^3.0.0-alpha.4",
"@enact/spotlight": "^5.4.2",
"@enact/ui": "^5.4.2",
"@enact/webos": "^5.4.2",
"dotenv": "^17.3.1",
"node-fetch": "^3.3.2",
"prop-types": "^15.8.1",
"qs": "^6.15.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1",
"shelljs": "^0.10.0"
},
"devDependencies": {
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^24.38.0",
"puppeteer-core": "^24.38.0",
"serve": "^14.2.6",
"wait-on": "^9.0.4"
},
"overrides": {
"ws": "7.5.10"
}
}