-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "com.palm.app.settings",
"version": "1.1.0",
"description": "A general template for an Enact Moonstone application.",
"author": "",
"main": "src/index.js",
"scripts": {
"serve": "enact serve",
"pack": "enact pack",
"pack-p": "enact pack -p",
"watch": "enact pack --watch",
"clean": "enact clean",
"lint": "enact lint .",
"test": "enact test start --single-run --browsers PhantomJS",
"test-json": "enact test start --single-run --browsers PhantomJS --reporters json",
"test-watch": "enact test start --browsers PhantomJS"
},
"license": "Apache-2.0",
"private": true,
"repository": "",
"enact": {
"title": "Settings",
"isomorphic": true,
"deep": [
"(window.PalmSystem && window.PalmSystem.launchParams && JSON.parse(window.PalmSystem.launchParams).target))"
]
},
"eslintConfig": {
"extends": "enact/strict"
},
"dependencies": {
"@enact/core": "^4.5.0",
"@enact/i18n": "^4.5.0",
"@enact/spotlight": "^4.5.0",
"@enact/ui": "^4.5.0",
"@enact/webos": "^4.5.0",
"@enact/sandstone": "^2.5.0",
"prop-types": "^15.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0"
}
}