initial setting

This commit is contained in:
jangheon Pyo
2024-01-18 11:01:57 +09:00
parent a4d6043284
commit 9eda9fb0e6
126 changed files with 3724 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
{
"name": "shopping-app-2.0",
"version": "1.0.0",
"description": "A general template for an Enact Sandstone application for webOS TVs",
"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 .",
"license": "enact license",
"test": "enact test",
"test-watch": "enact test --watch"
},
"license": "UNLICENSED",
"private": true,
"repository": "",
"engines": {
"npm": ">=6.9.0"
},
"enact": {
"theme": "sandstone",
"ri": {
"baseSize": 24
}
},
"eslintConfig": {
"extends": "enact-proxy"
},
"eslintIgnore": [
"node_modules/*",
"build/*",
"dist/*"
],
"dependencies": {
"@enact/core": "^4.7.8",
"@enact/i18n": "^4.7.8",
"@enact/sandstone": "^2.7.12",
"@enact/spotlight": "^4.7.8",
"@enact/ui": "^4.7.8",
"@enact/webos": "^4.7.8",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.5",
"ilib": "npm:ilib-webos@^14.19.0-webos1",
"less": "^4.2.0",
"less-loader": "^12.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"eslint-config-enact-proxy": "^1.0.7"
}
}