-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
35 lines (35 loc) · 964 Bytes
/
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
{
"name": "web-test",
"author": "Acala Network <hello@acala.network>",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"build": "npx vite build",
"vite:serve": "npx vite --port 3000 --host",
"vite:preview": "npx vite preview --port 3000",
"parcel:serve": "npx parcel serve index.html --port 3000",
"test": "playwright test"
},
"devDependencies": {
"@acala-network/chopsticks-core": "workspace:*",
"@acala-network/chopsticks-db": "workspace:*",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"@playwright/test": "^1.48.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"crypto-browserify": "^3.12.1",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stream-browserify": "^3.0.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"vite": "*",
"vite-tsconfig-paths": "*"
}
}