-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --port 3000",
"build": "tsc && vite build",
"build-css": "postcss src/frontend/styles.scss -o src/frontend/dist/css/styles.css",
"test": "vitest run",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\" \"backend/**/*.mo\"",
"sources": "mops sources",
"postinstall": "mops install"
},
"dependencies": {
"@ic-reactor/react": "1.10.1",
"@nivo/bar": "^0.88.0",
"@nivo/bump": "^0.87.0",
"@nivo/line": "^0.88.0",
"d3-time-format": "^4.1.0",
"date-fns": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@dfinity/agent": "^2.1.2",
"@dfinity/candid": "^2.1.2",
"@dfinity/identity": "^2.1.2",
"@dfinity/principal": "^2.1.2",
"@dfinity/utils": "^2.5.1",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"ic-mops": "^1.0.1",
"jsdom": "^25.0.1",
"mo-dev": "^0.13.0",
"node-sass": "^9.0.0",
"npm-run-all": "^2.1.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-motoko": "^0.9.4",
"sass": "^1.79.4",
"seedrandom": "^3.0.5",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-environment": "^1.1.3",
"vitest": "^2.1.1"
}
}