-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
{
"name": "@navikt/bedriftsmeny",
"version": "7.0.5",
"description": "Bedriftsvelger og -meny for innlogget arbeidsgiver. Laget av TAG (Tjenester for Arbeidsgivere).",
"author": "NAVIKT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/navikt/bedriftsmeny.git"
},
"source": "src/index.html",
"main": "lib/cjs/Bedriftsmeny.js",
"module": "lib/esm/Bedriftsmeny.js",
"types": "lib/types/Bedriftsmeny.d.ts",
"files": [
"lib",
"src/bedriftsmeny"
],
"scripts": {
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "run-p build:ts build:css",
"build:ts": "tsc -b ./tsconfig.build.cjs.json ./tsconfig.build.esm.json ./tsconfig.build.types.json",
"build:css": "postcss --use postcss-import -o lib/bedriftsmeny.css src/bedriftsmeny/index.css",
"dev": "next dev"
},
"peerDependencies": {
"@navikt/ds-css": ">=2",
"@navikt/ds-icons": ">=2",
"@navikt/ds-react": ">=2",
"@types/react": "17 || 18",
"@types/react-dom": "17 || 18",
"react": "17 || 18",
"react-dom": "17 || 18",
"react-router-dom": "6"
},
"peerDependenciesMeta": {
"react-router-dom": {
"optional": true
}
},
"devDependencies": {
"@types/history": "^4.7.8",
"@types/node": "20.3.1",
"@types/react": "^18.2.13",
"@types/react-collapse": "^5.0.0",
"@types/react-dom": "^18.0.8",
"@types/react-modal": "^3.13.1",
"next": "14.2.10",
"@navikt/ds-css": "4.3.0",
"@navikt/ds-icons": "3.4.3",
"@navikt/ds-react": "4.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"prettier": "2.2.1",
"process": "^0.11.10",
"typescript": "^5.3.3"
},
"dependencies": {
"fuzzysort": "^1.1.4",
"history": "^4.10.1",
"focus-trap-react": "^10.2.2"
},
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"singleQuote": true
}
}