-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@city-of-helsinki/react-helsinki-notification-manager",
"version": "0.1.11",
"type": "module",
"main": "./dist/react-helsinki-notification-manager.js",
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/City-of-Helsinki/react-helsinki-notification-manager"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-helsinki-notification-manager.js",
"require": "./dist/react-helsinki-notification-manager.js",
"default": "./dist/react-helsinki-notification-manager.js"
},
"./style.css": "./dist/react-helsinki-notification-manager.css"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.build.json && vite build",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "vitest",
"test:coverage": "vitest --run --coverage",
"preview": "vite preview",
"prepare": "husky",
"example": "./scripts/generate-example.sh"
},
"dependencies": {
"sass": "^1.99.0"
},
"peerDependencies": {
"hds-react": "^4.2.0",
"i18next": "^24.2.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^15.4.1"
},
"resolutions": {
"**/micromatch/picomatch": "^4.0.4",
"**/@rollup/pluginutils/picomatch": "^4.0.4",
"**/@microsoft/api-extractor/minimatch": "^9.0.7",
"**/vite-plugin-dts/@vue/language-core/minimatch": "^9.0.7",
"**/@typescript-eslint/parser/@typescript-eslint/typescript-estree/minimatch": "^9.0.7"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@eslint-react/eslint-plugin": "^4.2.3",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.12.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.3",
"commitlint": "^20.5.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-vitest-globals": "^2.0.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react-hooks": "^7.0.1",
"hds-react": "^4.10.0",
"husky": "^9.1.7",
"i18next": "^24.2.3",
"jsdom": "^29.0.2",
"prettier": "^3.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^15.7.4",
"typescript": "~5.6.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.16",
"vite-plugin-dts": "^4.5.3",
"vitest": "^4.1.3"
}
}