-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "saturn-webui",
"private": true,
"version": "0.1.3",
"description": "A frontend UI for the Saturn L2 node.",
"scripts": {
"dev": "vite",
"dev:webui": "vite --mode webui",
"build": "tsc && vite build",
"build:webui": "tsc && vite build --mode webui",
"preview": "vite preview",
"preview:webui": "vite preview --mode webui",
"eslint": "eslint src/ test/",
"test": "npm run build && vitest",
"test:unit": "npm run build && vitest test/unit",
"test:e2e": "npm run build && vitest test/e2e",
"test:webui-e2e": "npm run build:webui && vitest test/webui-e2e",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@glif/filecoin-address": "^2.0.20",
"@headlessui/react": "^1.7.5",
"@primer/octicons-react": "^17.10.0",
"@rollup/plugin-inject": "^5.0.2",
"ag-grid-react": "^28.2.1",
"bytes": "^3.1.2",
"chart.js": "^4.0.1",
"classnames": "^2.3.2",
"copy-text-to-clipboard": "^3.0.1",
"dayjs": "^1.11.7",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-chartjs-2": "^5.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.5",
"swr": "^2.0.0"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"puppeteer": "^19.4.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.1",
"vitest": "^0.25.8"
},
"author": "Protocol Labs",
"license": "(Apache-2.0 AND MIT)",
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-project/saturn-webui.git"
},
"bugs": {
"url": "https://github.com/filecoin-project/saturn-webui/issues"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{html,json,css,md}": "prettier --write"
}
}