-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.21 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
{
"name": "@openhpi/quiz-recap",
"version": "1.4.2",
"description": "Component for quiz recapitulation in education.",
"keywords": [
"quiz",
"education",
"learning"
],
"repository": {
"type": "git",
"url": "git+https://github.com/christophblessing/quiz-recap.git"
},
"license": "MIT",
"author": "Christoph Blessing",
"type": "module",
"exports": {
".": {
"import": "./dist/quiz-recap.js",
"require": "./dist/quiz-recap.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/quiz-recap.umd.cjs",
"module": "./dist/quiz-recap.js",
"types": "dist/quiz-recap.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.{ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.17",
"cssnano": "^7.0.0",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"i18next": "^23.10.1",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"react-i18next": "^15.0.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"sass": "^1.71.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.0.0",
"vitest": "^2.0.0"
}
}