-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.32 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@folio/linked-data",
"version": "2.0.4",
"type": "module",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/linked-data.es.js"
}
},
"main": "./dist/linked-data.es.js",
"module": "./dist/linked-data.es.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "npm run build --type=library",
"prepare": "husky",
"prepublishOnly": "npm run build:lib",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/ui-linked-data ./translations/ui-linked-data/compiled",
"lint": "eslint src",
"lint:check": "eslint src --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit",
"lint:full": "eslint src --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prettier:format:all": "prettier --write ./src/**/*.{ts,tsx,json,scss}",
"test": "npm run test:unit:coverage",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --ci --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.101.0",
"classnames": "^2.5.1",
"focus-trap-react": "^12.0.2",
"lodash": "^4.17.21",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-dropzone": "^14.3.8",
"react-intl": "^10.1.13",
"react-router-dom": "^7.17.0",
"react-select": "^5.10.2",
"uuid": "^14.0.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.39.4",
"@tanstack/react-query-devtools": "^5.101.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^6.0.2",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-testing-library": "^7.13.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^16.4.0",
"prettier": "^3.8.4",
"sass": "^1.93.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.10",
"vite-plugin-css-injected-by-js": "^5.0.1",
"vite-plugin-svgr": "^5.2.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,scss}": [
"prettier --write"
]
}
}