This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "dash-journal-60fd",
"private": true,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma migrate dev && prisma db seed",
"start": "remix-serve build",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test-storybook:ci": "test-storybook --maxWorkers=2"
},
"dependencies": {
"@prisma/client": "^3.14.0",
"@reach/dialog": "^0.18.0",
"@reach/visually-hidden": "^0.17.0",
"@remix-run/css-bundle": "^1.16.0",
"@remix-run/node": "^1.16.0",
"@remix-run/react": "^1.16.0",
"@remix-run/serve": "^1.16.0",
"@remix-run/server-runtime": "^1.16.1",
"bcryptjs": "^2.4.3",
"date-fns": "^2.30.0",
"react": "^17.0.2",
"react-big-calendar": "^1.8.6",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"recharts": "^2.12.7",
"remix-typedjson": "^0.4.1",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@faker-js/faker": "^6.3.1",
"@remix-run/dev": "^1.16.0",
"@remix-run/eslint-config": "^1.11.1",
"@storybook/addon-a11y": "^7.6.20",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-mdx-gfm": "^8.1.11",
"@storybook/jest": "0.2.3",
"@storybook/react": "^7.6.10",
"@storybook/react-vite": "^7.6.6",
"@storybook/test-runner": "^0.19.1",
"@storybook/testing-library": "0.2.2",
"@testing-library/cypress": "^8.0.7",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.2",
"@types/bcryptjs": "^2.4.6",
"@types/eslint": "^8.56.2",
"@types/node": "^18.19.50",
"@types/react": "^17.0.45",
"@types/react-big-calendar": "^1.8.8",
"@types/react-dom": "^17.0.17",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/vite-plugin": "^4.0.15",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-c8": "^0.33.0",
"autoprefixer": "^10.4.20",
"axe-playwright": "^2.0.2",
"babel-loader": "^8.2.5",
"binode": "^1.0.5",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"cypress": "^9.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-storybook": "^0.8.0",
"happy-dom": "^13.10.1",
"husky": "^9.0.11",
"jest": "^29.5.0",
"msw": "^1.3.4",
"npm-run-all": "^4.1.5",
"playwright": "^1.47.0",
"prettier": "3.3.3",
"prisma": "^3.14.0",
"start-server-and-test": "^2.0.8",
"storybook": "^7.6.20",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.5",
"vite": "^4.5.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^0.30.0"
},
"engines": {
"node": ">=16.19.1"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}