-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.31 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
{
"name": "internarbeidsflate-decorator-v3",
"private": true,
"version": "0.0.0",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/internarbeidsflate-decorator-v3.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/internarbeidsflate-decorator-v3.umd.js"
}
}
},
"scripts": {
"gen-css": "bunx postcss-cli src/index.css > src/index.bundled.css",
"dev-server": "bun run --watch dev-server/index.ts",
"dev": "vite",
"dev:fullscreen": "VITE_DECORATOR_MODE=fullscreen vite",
"build": "bun run gen-css && vite build",
"build:watch": "vite build --watch",
"build-and-preview": "vite build && vite preview",
"preview": "vite preview",
"build:preview": "bun run gen-css && vite build --config preview.vite.config.ts",
"test": "vitest",
"lint": "eslint",
"format": "prettier . --write"
},
"devDependencies": {
"@csstools/postcss-bundler": "^2.0.6",
"@eslint/js": "^9.22.0",
"@tailwindcss/vite": "^4.0.13",
"@tailwindcss/postcss": "^4.0.13",
"@types/bun": "^1.2.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"msw": "^2.7.0",
"postcss-cli": "^11.0.0",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.13",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.0.11",
"vitest": "^3.0.8",
"vitest-websocket-mock": "^0.4.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@navikt/aksel-icons": "^7.17.2",
"@navikt/ds-css": "^7.17.2",
"@navikt/ds-react": "^7.17.2",
"@navikt/ds-tailwind": "^7.17.2",
"@navikt/ds-tokens": "^7.17.2",
"@navikt/navspa": "^6.2.0",
"@tanstack/query-core": "^5.67.3",
"classnames": "^2.5.1",
"use-sync-external-store": "^1.4.0",
"zustand": "^5.0.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}