This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.2 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
123
124
125
126
127
128
{
"description": "Datepicker with input and calendar. Based on @navikt/ds-react and @navikt/ds-css",
"homepage": "https://navikt.github.io/ds-datepicker",
"license": "MIT",
"main": "lib/index.js",
"name": "@navikt/ds-datepicker",
"types": "lib/index.d.ts",
"version": "4.2.1",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"bugs": {
"url": "https://github.com/navikt/ds-datepicker/issues"
},
"dependencies": {
"@navikt/ds-css": "3",
"@navikt/ds-react": "3",
"focus-trap-react": "10.1.1",
"prop-types": "15.8.1"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/preset-env": "7.21.5",
"@changesets/cli": "^2.26.1",
"@storybook/addon-a11y": "7.0.10",
"@storybook/addon-actions": "7.0.10",
"@storybook/addon-essentials": "7.0.10",
"@storybook/addon-interactions": "7.0.10",
"@storybook/addon-links": "7.0.10",
"@storybook/preset-create-react-app": "^7.0.10",
"@storybook/react": "7.0.10",
"@storybook/react-webpack5": "7.0.10",
"@storybook/testing-library": "0.1.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.1",
"@types/node": "20.1.2",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"babel-loader": "9.1.2",
"classnames": "2.3.2",
"core-js": "3.30.2",
"css-loader": "6.7.3",
"date-fns": "2.30.0",
"date-holidays": "3.19.0",
"dayjs": "1.11.7",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-storybook": "0.6.12",
"gh-pages": "5.0.0",
"history": "5.3.0",
"intl": "1.2.5",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"less": "4.1.3",
"less-loader": "11.1.0",
"less-plugin-npm-import": "2.1.0",
"lodash.throttle": "4.1.1",
"mini-css-extract-plugin": "2.7.5",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"react": "18.2.0",
"react-collapse": "5.1.1",
"react-day-picker": "8.7.1",
"react-dom": "18.2.0",
"react-intl": "6.4.2",
"react-modal": "3.16.1",
"react-router-dom": "6.11.1",
"react-scripts": "5.0.1",
"rimraf": "5.0.0",
"storybook": "7.0.10",
"typescript": "5.0.4",
"uuid": "9.0.0",
"webpack": "5.82.0"
},
"directories": {
"lib": "lib"
},
"files": [
"package.json",
"/lib"
],
"peerDependencies": {
"@navikt/ds-css": ">=2",
"@navikt/ds-react": ">=2",
"classnames": "2.3.x",
"date-fns": "2.x",
"dayjs": "1.x",
"react": "18.x",
"react-day-picker": "8.x",
"uuid": "9"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/navikt/ds-datepicker.git"
},
"scripts": {
"build-lib": "npm-run-all clean-lib compile-lib-script compile-less",
"clean-lib": "rimraf ./lib",
"compile-less": "lessc ./src/datepicker/styles/datepicker.less lib/index.css",
"compile-lib-script": "tsc -p tsconfig-build-lib.json",
"deploy": "gh-pages -d storybook-static",
"predeploy": "npm run build-storybook",
"test": "react-scripts test --watchAll=false --env=jsdom",
"test-coverage": "react-scripts test a --coverage --watchAll=false",
"test-coverage-watch": "react-scripts test a --coverage --watchAll=true",
"test-watch": "react-scripts test",
"storybook": "storybook dev -p 6006 -s public",
"build-storybook": "storybook build"
}
}