-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "eliran-teller-remix",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"test": "vitest --config ./vitest.config.ts",
"test:once": "vitest run --config ./vitest.config.ts",
"lint": "eslint ./app && prettier -w ./app",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"husky:precommit": "pnpm lint",
"husky:prepush": "pnpm typecheck && pnpm test:once"
},
"dependencies": {
"@formatjs/intl": "^2.9.4",
"@remix-run/css-bundle": "^2.1.0",
"@remix-run/node": "^2.1.0",
"@remix-run/react": "^2.1.0",
"@remix-run/serve": "^2.1.0",
"@remix-run/testing": "^2.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@testing-library/react": "^14.0.0",
"@types/js-cookie": "^3.0.5",
"clsx": "^2.0.0",
"happy-dom": "^12.9.1",
"isbot": "^3.6.8",
"js-cookie": "^3.0.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.5.0",
"storybook": "^7.5.1",
"storybook-addon-react-router-v6": "^2.0.8",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"devDependencies": {
"@remix-run/dev": "^2.1.0",
"@remix-run/eslint-config": "^2.1.0",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/react-vite": "7.4.6",
"@storybook/testing-library": "0.2.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint": "^8.38.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.8.0"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"semi": true
}
}