-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.3 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
{
"name": "@amsterdam/amsterdam-react-final-form",
"version": "0.1.141",
"private": false,
"repository": "https://github.com/amsterdam/amsterdam-react-final-form.git",
"license": "MIT",
"main": "index.js",
"type": "module",
"description": "Provides adapters for (form-)components defined in [amsterdam-styled-components](https://github.com/Amsterdam/amsterdam-styled-components/pull/491) to be compatible with [react-final-form](https://github.com/final-form/react-final-form).",
"scripts": {
"start": "npm run storybook",
"test": "jest --watchAll=false",
"test:coverage": "jest --coverage --watchAll=false",
"storybook": "storybook dev -p 9009 public",
"storybook:build": "storybook build -s public -o docs",
"lint": "eslint --cache --ext .ts,.tsx src",
"lint:fix": "npm run lint -- --fix",
"build": "rm -Rf ./dist && tsc ./src/index.ts --strict --esModuleInterop --declaration --skipLibCheck --jsx react --outDir dist && cp ./package.json ./dist/"
},
"dependencies": {
"@storybook/react-vite": "^8.3.4",
"@types/lodash.isempty": "^4.4.7",
"immer": "^10.0.3",
"lodash.chunk": "^4.2.0",
"lodash.difference": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@amsterdam/asc-assets": "^0.38.0",
"@amsterdam/asc-ui": "^0.38.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^8.3.4",
"@storybook/react": "^8.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@types/node": "^22.5.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-storybook": "^0.9.0",
"final-form": "^4.20.1",
"final-form-arrays": "^3.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"storybook": "^8.3.4",
"styled-components": "^5.1.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@amsterdam/asc-assets": ">= 0.37",
"@amsterdam/asc-ui": ">= 0.37",
"final-form": ">= 4",
"final-form-arrays": ">= 3",
"react": ">= 16",
"react-dom": ">= 16",
"react-final-form": ">= 6",
"react-final-form-arrays": ">= 3",
"styled-components": ">= 5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"IE 11"
]
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.stories.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/index.{ts,tsx}"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
},
"publishConfig": {
"access": "public"
}
}