-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "lvgljs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"sim": "./build/lvgljs run",
"sim:watch": "nodemon --watch 'demo/**/*.js' --ext 'js' --exec 'npm run sim'",
"bundle": "node ./build.js",
"bundle:watch": "nodemon --watch 'demo/**/*.jsx' --watch 'test/**/*.jsx' --ext 'jsx' --exec 'npm run bundle'",
"fmt": "prettier -w src/render/react"
},
"dependencies": {
"buffer": "^6.0.3",
"core-js": "^3.23.2",
"esbuild": "^0.14.43",
"fetch-blob": "^3.2.0",
"nodemon": "^3.1.4",
"lvgljs-ui": "file:src/render/react",
"react": "^16.13.1",
"react-proxy": "^2.0.8",
"react-reconciler": "^0.25.1",
"react-router": "^6.3.0",
"text-encoding": "^0.7.0",
"urlpattern-polyfill": "^5.0.3",
"util": "^0.12.4",
"web-streams-polyfill": "^3.2.1",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.2",
"whatwg-fetch": "^3.6.2"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@txikijs/types": "^24.6.0",
"@types/react": "^16.3.1",
"@types/react-reconciler": "^0.18.0",
"esbuild-plugin-alias": "^0.2.1",
"glob": "^10.3.15",
"prettier": "^3.0.1"
}
}