-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.69 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.69 KB
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
112
{
"name": "blog-tutorial-d3e3",
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"mock:dev": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"dev": "cross-env binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "remix-serve build",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test": "vitest",
"typecheck": "tsc",
"validate": "run-p \"test -- --run\" lint typecheck",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook --coverage",
"chromatic": "npx chromatic --project-token=chpt_dec3c7503a78448 --exit-once-uploaded --exit-zero-on-changes --only-changed --storybook-build-dir storybook-static"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "^4.12.0",
"@remix-run/css-bundle": "^1.16.1",
"@remix-run/node": "^1.16.1",
"@remix-run/react": "^1.16.1",
"@remix-run/serve": "^1.16.1",
"bcryptjs": "^2.4.3",
"chromatic": "^10.9.5--canary.920.7878891397.0",
"isbot": "^3.6.8",
"marked": "^5.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"theme-change": "^2.5.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.0.4",
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^1.16.1",
"@remix-run/eslint-config": "^1.16.1",
"@remix-run/testing": "^1.18.1",
"@storybook/addon-coverage": "^1.0.0",
"@storybook/addon-essentials": "^8.0.0-beta.0",
"@storybook/addon-interactions": "^8.0.0-beta.0",
"@storybook/addon-links": "^8.0.0-beta.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.0.0-beta.0",
"@storybook/react": "^8.0.0-beta.0",
"@storybook/react-vite": "^8.0.0-beta.0",
"@storybook/test": "^8.0.0-beta.0",
"@storybook/test-runner": "^0.16.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.37.0",
"@types/marked": "^5.0.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.14",
"binode": "^1.0.5",
"c8": "^7.13.0",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"daisyui": "^4.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-storybook": "^0.6.15",
"happy-dom": "^9.8.0",
"msw": "^1.2.2",
"msw-storybook-addon": "^1.10.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"prop-types": "^15.8.1",
"remix-utils": "^7.5.0",
"start-server-and-test": "^2.0.0",
"storybook": "^8.0.0-beta.0",
"storybook-addon-pseudo-states": "^2.1.2",
"storybook-addon-react-router-v6": "^2.0.10",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-environment": "^1.1.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=16"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
},
"msw": {
"workerDirectory": "public"
},
"version": ""
}