-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.56 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
84
85
{
"name": "registry_admin",
"version": "2.1.0",
"description": "admin UI for registered libraries",
"repository": {
"type": "git",
"url": "https://github.com/NYPL-Simplified/registry_admin.git"
},
"author": "NYPL",
"license": "Apache-2.0",
"source": "src/index.html",
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf"
},
"scripts": {
"start": "parcel",
"build": "parcel build --no-cache",
"local-prod": "npm run build && npm start",
"test": "jest",
"test:ci": "jest --ci --silent --coverage --maxWorkers=2",
"check": "tsc --noEmit",
"prettier": "prettier --write --ignore-path .eslintignore .",
"prettier:check": "prettier --check --ignore-path .eslintignore .",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix",
"lint:fix": "npm run lint && npm run prettier",
"prepare": "husky install"
},
"dependencies": {
"@nypl/design-system-react-components": "3.1.7",
"js-cookie": "3.0.1",
"react": "18.3.0",
"react-dom": "18.3.0",
"react-error-boundary": "3.1.4"
},
"devDependencies": {
"@babel/preset-typescript": "7.24.7",
"@parcel/transformer-sass": "2.12.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@types/jest": "27.5.0",
"@types/js-cookie": "3.0.2",
"@types/lodash": "4.14.202",
"@types/node": "17.0.45",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"babel-jest": "28.1.3",
"esbuild": "0.14.38",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"jest": "28.1.0",
"jest-config": "28.1.3",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "12.4.1",
"os-browserify": "0.3.0",
"parcel": "2.12.0",
"path-browserify": "1.0.1",
"prettier": "2.6.2",
"process": "0.11.10",
"react-test-renderer": "18.1.0",
"ts-jest": "28.0.2",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "2.4.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write --ignore-path .eslintignore"
}
}