-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "coin-wallet",
"version": "1.0.0",
"scripts": {
"emulate": "cordova emulate android",
"postinstall": "cordova platform add android",
"build": "node ./scripts/build.js && npm run typecheck",
"build:cordova": "cordova build android",
"typecheck": "tsc --noEmit",
"serve": "http-server ./www -o"
},
"devDependencies": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@types/uuid": "^8.3.4",
"cordova": "^11.0.0",
"cordova-android": "^10.1.2",
"esbuild-wasm": "^0.14.23",
"http-server": "^14.1.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.6",
"@mui/styles": "^5.2.3",
"history": "^5.3.0",
"mobx": "^6.5.0",
"mobx-react": "^7.3.0",
"react": "17.0.2",
"react-declarative": "^1.8.39",
"react-dom": "17.0.2",
"uuid": "^8.3.2"
},
"cordova": {
"platforms": [
"android"
]
}
}