-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"author": "zCloak",
"bugs": "https://github.com/zCloak-Network/zkid-credential/issues",
"homepage": "https://github.com/zCloak-Network/zkid-credential#readme",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/zCloak-Network/zkid-credential.git"
},
"sideEffects": false,
"type": "module",
"version": "0.34.1",
"workspaces": [
"packages/*"
],
"bin": {
"build-assets": "./scripts/buildAssets.js"
},
"scripts": {
"analyze": "yarn clean && BUILD_ANALYZE=1 yarn run build:code && yarn source-map-explorer packages/app/build/main.*.js",
"build": "yarn build-assets && yarn build:code && yarn build:zip",
"build:code": "NODE_ENV=production yarn zcloak-dev-build-ts",
"build:release": "yarn zcloak-ci-ghact-app",
"build:zip": "rm -rf ./zkid-credential.zip && cd packages/app/build && zip -r -FS ../../../zkid-credential.zip .",
"clean": "zcloak-dev-clean-build",
"lint": "zcloak-dev-run-lint",
"lint:dependencies": "zcloak-dev-lint-dependencies --fix",
"start": "yarn clean && cd packages/app && yarn webpack serve --config webpack.serve.cjs --port 3000",
"test": "zcloak-dev-run-test --coverage --forceExit --runInBand --testPathIgnorePatterns e2e",
"test:one": "zcloak-dev-run-test --detectOpenHandles --forceExit"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@esbuild-kit/esm-loader": "^2.5.5",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.130",
"@mui/material": "^5.13.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.4.2",
"@types/moment": "^2.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/ua-parser-js": "^0.7.36",
"@zcloak/dev": "^0.31.0",
"concurrently": "^7.6.0",
"devtron": "^1.4.0",
"humps": "^2.0.1",
"material-ui-popup-state": "^5.0.5",
"mdast-util-to-string": "^3.1.1",
"node-html-parser": "^6.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.5",
"unified": "^10.1.2"
},
"resolutions": {
"@polkadot/util": "^12.2.1",
"tweetnacl": "^1.0.3",
"typescript": "^5.0.4"
}
}