-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.23 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
{
"name": "amsterdam-react-final-form",
"version": "0.1.99",
"private": false,
"repository": "https://github.com/Jeffrey-Zutt/amsterdam-react-final-form.git",
"license": "MIT",
"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": {
"test": "react-scripts test --watchAll=false",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"storybook": "start-storybook -p 9009 -s public",
"storybook:build": "build-storybook -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/package.json",
"postinstall": "rm -Rf ./node_modules/@datapunt/asc-assets/es; rm -Rf ./node_modules/@datapunt/asc-ui/es; rm -Rf node_modules/@datapunt/asc-ui/node_modules/@datapunt/asc-assets/es;"
},
"eslintConfig": {
"extends": "react-app"
},
"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"
]
},
"dependencies": {
"@datapunt/asc-ui": "^0.20.0",
"final-form": "^4.20.1",
"final-form-arrays": "^3.0.2",
"lodash.isequal": "^4.5.0",
"react-final-form": "^6.5.1",
"react-final-form-arrays": "^3.1.2"
},
"devDependencies": {
"@datapunt/asc-assets": "^0.23.1-alpha.45",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/enzyme": "^3.10.5",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.150",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^5.1.0",
"babel-plugin-styled-components": "^1.10.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1",
"styled-components": "^5.2.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@datapunt/asc-assets": "^0.23.1-alpha || ^0.23.1-beta || ^0.23.1 || ^0.23.0-alpha || ^0.23.0-beta || ^0.23.0",
"react": "^16.13.1",
"styled-components": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"**/*.ts?(x)": [
"npm run lint:fix"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.stories.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/index.{ts,tsx}"
]
},
"main": "index.js"
}