-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.44 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
{
"name": "@folio/linked-data",
"version": "1.0.1",
"type": "module",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folioci/"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/linked-data.es.js",
"require": "./dist/linked-data.umd.js"
}
},
"main": "./dist/linked-data.umd.js",
"module": "./dist/linked-data.es.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "npm run build --type=library",
"prepare": "npm run build:lib",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/ui-linked-data ./translations/ui-linked-data/compiled",
"lint:errors-only": "eslint src --ext ts,tsx --report-unused-disable-directives --quiet",
"lint:full": "eslint src --ext ts,tsx --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": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --ci --coverage"
},
"dependencies": {
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-router-dom": "^6.20.0",
"react-select": "^5.8.0",
"recoil": "^0.7.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.199",
"@types/node": "^20.0.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.1.0",
"sass": "^1.62.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-svgr": "^4.1.0"
}
}