-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
46 lines (46 loc) · 1.64 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": "gallery",
"license": "Apache-2.0",
"version": "0.2.0",
"packageManager": "[email protected]",
"dependencies": {
"@concordium/browser-wallet-api-helpers": "^3.0.1",
"@concordium/web-sdk": "^7.5.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@craftamap/esbuild-plugin-html": "^0.4.0",
"@types/node": "^18.11.14",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"cross-env": "^7.0.3",
"esbuild": "^0.14.42",
"esbuild-plugin-svgr": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.2.0",
"typescript": "^4.7.2",
"prettier": "^3.2.5",
"tsx": "^4.7.0"
},
"scripts": {
"lint": "eslint . --cache --max-warnings 0 --ext .ts,.tsx",
"lint-fix": "yarn lint --fix",
"fmt": "prettier -w .",
"build": "tsx ./esbuild.config.ts; cp ./src/assets/* ./public",
"build-verifier": "cargo build --manifest-path=verifier/Cargo.toml --release",
"watch": "cross-env WATCH=1 yarn build",
"start": "./verifier/target/release/gallery-verifier"
}
}