-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.96 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
{
"name": "@eurofurence/reg-component-library",
"version": "0.0.23",
"description": "React UI components for the Eurofurence registration tools.",
"author": "Eurofurence Registration Team",
"license": "MIT",
"repository": "git://github.com/eurofurence/reg-component-library.git",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "microbundle --no-compress --format modern,cjs --jsxImportSource react",
"start": "microbundle watch --no-compress --format modern,cjs --jsxImportSource react",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint ./src",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"tsc": "tsc",
"microbundle": "microbundle"
},
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.13",
"@storybook/theming": "^6.5.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/ramda": "^0.28.18",
"@types/react": "^18.0.25",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.8",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-eslint": "^10.1.0",
"babel-loader": "9.1.0",
"color-convert": "^2.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"fast-check": "^3.3.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"ts-essentials": "^9.3.0",
"typescript": "^4.8.4"
},
"files": [
"dist"
],
"dependencies": {
"ramda": "^0.28.0",
"react-datepicker": "^4.8.0",
"react-detect-click-outside": "^1.1.7",
"react-select": "^5.6.0"
},
"overrides": {
"@mdx-js/react": {
"react": "^18.2.0"
}
}
}