-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "perf-puppeteer",
"version": "1.0.0",
"description": "A general template for an Enact Sandstone and Agate application.",
"author": "",
"main": "src/index.js",
"scripts": {
"serve": "cross-env REACT_APP_ENACT_THEME=sandstone 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": "enact pack -p",
"watch": "enact pack --watch",
"clean": "enact clean",
"lint": "enact lint .",
"license": "enact license",
"test": "jest --detectOpenHandles",
"stop": "pkill -f 'enact serve'",
"test-all": "node ./scripts/test-all.js"
},
"license": "UNLICENSED",
"private": true,
"repository": "",
"enact": {
"theme": "sandstone"
},
"eslintIgnore": [
"node_modules/*",
"build/*",
"dist/*"
],
"dependencies": {
"@enact/agate": "^2.0.11",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/sandstone": "^2.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/webos": "^4.9.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"prop-types": "^15.8.1",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"shelljs": "^0.8.5"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^23.5.3",
"puppeteer-core": "^23.5.3",
"wait-on": "^8.0.1"
},
"overrides": {
"ws": "7.5.10"
}
}