-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.05 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
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "battlechan",
"scripts": {
"build": "npm run build --workspaces --if-present",
"prebuild": "npm run prebuild --workspaces --if-present",
"pretest": "npm run prebuild --workspaces --if-present",
"start": "npm start --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"deploy":"./deploy.sh"
},
"type": "module",
"workspaces": [
"src/battlechan_frontend"
],
"dependencies": {
"@connect2ic/core": "^0.1.1",
"@connect2ic/react": "^0.1.0",
"@dfinity/agent": "^1.3.0",
"@dfinity/principal": "^1.3.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.14",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"recharts": "^2.12.4",
"redux": "^5.0.1"
},
"devDependencies": {
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
}
}