-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "template-frontend",
"version": "1.0.0",
"description": "frontend canister",
"main": "index.js",
"type": "module",
"scripts": {
"build": "vite build",
"start": "vite --port 3000",
"lint": "eslint --ext .js,.jsx ."
},
"devDependencies": {
"@iconify-json/bi": "^1.1.17",
"@iconify-json/carbon": "^1.1.18",
"@iconify-json/fa-solid": "^1.1.4",
"@iconify-json/nimbus": "^1.1.7",
"@iconify/json": "^2.2.81",
"@svgr/core": "^8.0.0",
"@svgr/plugin-jsx": "^8.0.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"tailwindcss-debug-screens": "^2.2.1",
"unplugin-icons": "^0.16.3",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3"
},
"dependencies": {
"@dfinity/agent": "^0.15.6",
"@dfinity/auth-client": "^0.15.6",
"@dfinity/candid": "^0.15.6",
"@dfinity/principal": "^0.15.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.13.0"
},
"engines": {
"node": "^12 || ^14 || ^16 || ^18"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
]
}