-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "vite-react-azle",
"private": true,
"version": "0.0.0",
"scripts": {
"setup": "npm i && dfx canister create backend && dfx generate backend && dfx deploy",
"start": "run-p frontend",
"frontend": "vite --port 3000",
"backend" : "dfx deploy backend",
"build": "tsc && vite build",
"test": "run-s test:frontend",
"pretest:backend": "AZLE_REBUILD=true ts-node -P tsconfig.node.json --transpile-only --ignore=false backend/tests/pretest.ts",
"test:frontend": "vitest run",
"test:backend": "AZLE_REBUILD=true ts-node -P tsconfig.node.json --transpile-only --ignore=false backend/tests/test.ts",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\" "
},
"dependencies": {
"azle": "^0.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@dfinity/auth-client": "^0.18.1",
"@dfinity/identity": "^0.18.1",
"ts-node": "10.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"bignumber.js": "^9.1.1",
"cross-fetch": "^3.1.6",
"dotenv": "^16.3.1",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"vitest": "^0.32.2"
}
}