-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
57 lines (57 loc) · 1.78 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "jest --env=jsdom --colors --coverage"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.16.7",
"@headlessui/react": "^1.6.6",
"@inertiajs/inertia": "^0.10.0",
"@inertiajs/inertia-react": "^0.7.0",
"@inertiajs/progress": "^0.2.6",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.1.1",
"autoprefixer": "^10.2.4",
"axios": "^0.28",
"babel-jest": "^27.5.1",
"intersection-observer": "^0.12.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^27.5.1",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.19",
"msw": "^0.39.2",
"postcss": "^8.4.38",
"postcss-import": "^14.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^18.0.0",
"tailwindcss": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@heroicons/react": "^1.0.5",
"chart.js": "^3.7.0",
"chartjs-plugin-annotation": "^2.0.1",
"circlepack-chart": "^1.7.1",
"graphql": "^16.8.1",
"numbro": "^2.3.6",
"react-chartjs-2": "^4.0.0",
"urql": "^2.2.0"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}