-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.42 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
{
"name": "@onekey/web",
"version": "22.1.0",
"private": true,
"scripts": {
"type-check": "tsc --project tsconfig.json",
"type-check:watch": "yarn type-check -- --watch",
"lint": "eslint . --ext .tsx,.ts",
"copy-files": "yarn workspace @trezor/suite-data copy-static-files",
"dev": "yarn workspace @trezor/suite-data copy-static-files && next -p 8083",
"cert": "sh ./scripts/gencert.sh",
"dev:https": "yarn workspace @trezor/suite-data copy-static-files && node ./scripts/httpsServer.js",
"build:app": "next build && next export -o build",
"build": "run-s copy-files build:app"
},
"dependencies": {
"@sentry/browser": "^5.29.2",
"@sentry/integrations": "^5.29.2",
"@trezor/suite": "21.3.0",
"@zeit/next-workers": "^1.0.0",
"next": "^10.0.5",
"next-redux-wrapper": "^5.0.0",
"styled-components": "5.1.1",
"worker-loader": "^3.0.7"
},
"devDependencies": {
"@types/next-redux-wrapper": "^3.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.7",
"babel-plugin-styled-components": "1.12.0",
"git-revision-webpack-plugin": "^3.0.6",
"is-website-vulnerable": "^1.14.6",
"next-optimized-images": "^2.6.2",
"next-transpile-modules": "^4.1.0",
"ts-loader": "^8.0.14"
}
}