-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.01 KB
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
{
"name": "@con2/components",
"version": "0.1.0",
"private": false,
"license": "MIT",
"type": "module",
"exports": {
".": "./src/index.ts",
"./icons": "./src/icons/index.ts",
"./helpers": "./src/helpers/index.ts",
"./icons/*.css": "./src/icons/*.css",
"./components/*.css": "./src/components/*.css",
"./components/*.module.css": "./src/components/*.module.css"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"peerDependencies": {
"bootstrap": "^5.3.0",
"next": "^16.2.0",
"next-auth": "^4.24.0",
"react": "^19.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^19.2.0"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@uiw/react-md-editor": "^4.1.1",
"motion": "^12.43.0",
"react-day-picker": "^10.0.1",
"react-markdown": "^10.1.0",
"rehype-external-links": "^3.0.0",
"rehype-sanitize": "^6.0.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^26.1.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"bootstrap": "^5.3.5",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^17.3.0",
"next": "^16.2.12",
"next-auth": "^4.24.15",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.8",
"sass": "^1.102.0",
"semantic-release": "^24.2.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"prettier": {}
}