-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "DeAIManifesto_frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"setup": "npm i && dfx canister create DeAIManifesto_backend && dfx generate DeAIManifesto_backend && dfx deploy",
"start": "vite --port 3000",
"prebuild": "dfx generate DeAIManifesto_backend",
"build": "tsc && vite build",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\""
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@dfinity/agent": "^0.15.7",
"@dfinity/candid": "^0.15.7",
"@dfinity/principal": "^0.15.7",
"framer-motion": "^6.5.1"
},
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"dotenv": "^16.3.1",
"sass": "^1.63.6",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"autoprefixer": "^10.4.2",
"cssnano": "^5.1.14",
"postcss": "^8.4.20",
"postcss-load-config": "^4.0.1",
"@tailwindcss/typography": "^0.5.3",
"tailwindcss": "^3.3.3"
}
}