-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 4.15 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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"//": "Append // to scripts to add more information (comments are not supported in '.json')",
"scripts": {
"start": "vite serve --host 0.0.0.0 --port 3000",
"start:docker": "vite serve",
"dev": "yarn run start",
"build": "vite build",
"ci": "yarn install --immutable",
"ci:debian": "yarnpkg install --immutable",
"preview": "vite preview",
"update//": "echo Updates dependencies according to 'package.json' rules and updates 'yarn.lock'.",
"update": "yarn up",
"up": "yarn up",
"self-upgrade//": "echo Upgrades yarn itself to latest version.",
"self-upgrade": "yarn set version latest",
"upgrade": "yarn upgrade-interactive",
"outdated": "yarn upgrade-interactive",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006 --quiet",
"storybook-dev": "storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook build",
"build-storybook-dev": "storybook build",
"cypress:open": "cypress open",
"cypress:run": "yarn run cypress run",
"biome//": "echo Biome is configured for entire repo.",
"biome:check": "biome check",
"biome:ci": "biome ci",
"biome:fix": "biome check --write",
"lint:check": "biome lint",
"lint:fix": "biome lint --write",
"lint:fix-unsafe": "biome lint --write --unsafe",
"format:check": "biome format",
"format:fix": "biome format --write",
"stylelint:check": "stylelint --config .stylelintrc src/**/*.{css,scss}",
"tsc:check": "tsc",
"tsc:watch": "tsc --watch",
"verify": "yarn biome:check && yarn tsc:check && yarn stylelint:check"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.0",
"axios": "^1.7.4",
"classnames": "^2.3.2",
"cmdk": "^0.2.0",
"cypress-fail-on-console-error": "^5.0.1",
"date-fns": "^2.30.0",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"path": "^0.12.7",
"path-to-regexp": "^8.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.53.0",
"react-loading-skeleton": "^3.3.1",
"react-markdown": "^9.0.0",
"react-modal": "^3.16.1",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.16.0",
"react-toastify": "^9.1.3",
"vite-plugin-svgr": "^4.1.0",
"web-vitals": "^3.5.0",
"zod": "^3.23.8",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.2",
"@iconify/react": "^4.1.1",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/node-logger": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^20.8.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-modal": "^3.16.1",
"@vitejs/plugin-react": "^4.1.0",
"babel-plugin-named-exports-order": "^0.0.2",
"chromatic": "^7.4.0",
"cypress": "^13.3.1",
"cypress-vite": "^1.4.2",
"prop-types": "^15.8.1",
"react-i18next": "^13.3.0",
"react-scripts": "^5.0.1",
"sass": "^1.69.3",
"storybook": "^7.4.6",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.2.1",
"typescript": "^5.2.2",
"vite": "^4.5.6"
},
"browserslist": [
"defaults"
],
"main": "src/index.tsx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Samfundet/Samfundet4.git"
},
"bugs": {
"url": "https://github.com/Samfundet/Samfundet4/issues"
},
"_id": "frontend@0.1.0",
"packageManager": "yarn@4.5.0"
}