forked from Open-Event-Systems/registration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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
{
"name": "@open-event-systems/registration",
"version": "0.1.0",
"description": "OES registration web interface",
"type": "module",
"license": "LGPL-3.0-or-later",
"exports": {
"./*": "./src/*"
},
"imports": {
"#src/*.js": [
"./src/*.tsx",
"./src/*.ts",
"./src/*.js"
],
"#resources/*": [
"./resources/*"
]
},
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "Wes <wes@anthronewengland.com>",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@simplewebauthn/typescript-types": "^7.0.0",
"@storybook/addon-essentials": "^7.0.5",
"@storybook/addon-interactions": "^7.0.5",
"@storybook/addon-links": "^7.0.5",
"@storybook/blocks": "^7.0.5",
"@storybook/react": "^7.0.5",
"@storybook/react-webpack5": "^7.0.5",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"babel-loader": "^9.1.2",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.1",
"storybook": "^7.0.5",
"svgo-loader": "^4.0.0",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@open-event-systems/interview-components": "^0.1.0",
"@open-event-systems/interview-lib": "^0.1.0",
"@simplewebauthn/browser": "^7.2.0",
"@stripe/stripe-js": "^1.52.1",
"@tabler/icons-react": "^2.16.0",
"date-fns": "^2.29.3",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"oauth4webapi": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"wretch": "^2.5.2",
"yup": "^1.1.1"
}
}