-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.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
{
"name": "@amsterdam/wonen-ui",
"version": "1.0.66",
"private": false,
"description": "Shared functionality to be used by apps for 'Wonen'",
"repository": "https://github.com/Amsterdam/wonen-ui.git",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "npm run storybook",
"test": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"lint": "eslint --max-warnings 0 --cache --ext .ts,.tsx src",
"lint:fix": "npm run lint -- --fix",
"storybook": "storybook dev -p 9001 -c .storybook",
"storybook:build": "storybook build -o docs",
"build": "rm -Rf ./dist && tsc ./src/index.ts --strict --esModuleInterop --declaration --skipLibCheck --jsx react --outDir dist && cp ./package.json ./dist/package.json"
},
"dependencies": {
"dayjs": "^1.11.12",
"dompurify": "^3.2.3",
"lodash.get": "^4.4.2",
"lodash.pickby": "^4.6.0",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@amsterdam/asc-assets": "^0.38.0",
"@amsterdam/asc-ui": "^0.38.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.14",
"@types/lodash.get": "^4.4.7",
"@types/lodash.pickby": "^4.6.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.26",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.11.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook": "^8.4.7",
"styled-components": "^5.3.8",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.stories.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/index.{ts,tsx}"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
}
}