-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.98 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
{
"name": "emse-ui",
"version": "1.2.2",
"description": "The component library to be used in the Async Portal at EMSE.",
"main": "./dist/emse-ui.umd.js",
"module": "./dist/emse-ui.es.js",
"types": "./dist/emse-ui.d.ts",
"exports": {
".": {
"import": "./dist/emse-ui.es.js",
"require": "./dist/emse-ui.umd.js"
}
},
"dependencies": {
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0",
"recharts": "^2.1.13"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.4",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/cypress": "^8.0.3",
"@types/jest": "^29.1.1",
"@types/node": "^18.11.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.21",
"@types/react-router-dom": "^5.3.3",
"@types/recharts": "^1.8.23",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.7",
"axe-core": "^4.5.0",
"babel-loader": "^8.2.5",
"concurrently": "^7.4.0",
"cypress": "^10.10.0",
"cypress-axe": "^1.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-storybook": "^0.6.6",
"flowbite": "^1.4.7",
"flowbite-react": "^0.0.27",
"postcss": "^8.4.14",
"pre-commit": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.1.8",
"vite-plugin-dts": "^1.6.6"
},
"peerDependencies": {
"flowbite": "^1.4.7",
"flowbite-react": "^0.0.27",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "concurrently \"yarn style\" \"yarn storybook\"",
"test": "cypress run --component",
"test:open": "cypress open --component",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "yarn style:build && build-storybook",
"build": "tsc --skipLibCheck --excludeDirectories node_module && vite build",
"style": "npx tailwindcss -i ./src/global.css -o ./src/output.css --watch",
"style:build": "npx tailwindcss -i ./src/global.css -o ./src/output.css",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"files": [
"/dist"
],
"keywords": [],
"author": {
"name": "Dániel B. Papp",
"email": "[email protected]",
"url": "https://github.com/odu-emse/emse-ui"
},
"repository": {
"type": "git",
"url": "https://github.com/odu-emse/emse-ui.git"
},
"license": "ISC",
"engines": {
"node": ">=16.17.0 <=18.1.0"
}
}