-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
135 lines (135 loc) · 4.23 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@nypl/design-system-react-components",
"version": "3.5.2-rc",
"description": "NYPL Reservoir Design System React Components",
"repository": {
"type": "git",
"url": "https://github.com/NYPL/nypl-design-system/"
},
"main": "dist/design-system-react-components.cjs",
"types": "dist/src/index.d.ts",
"module": "dist/design-system-react-components.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/design-system-react-components.js",
"require": "./dist/design-system-react-components.cjs"
},
"./dist/styles.css": "./dist/styles.css"
},
"author": "NYPL",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "vite build --watch",
"build": "tsc --noEmit && vite build --mode=production",
"test": "jest --config=jest.config.js",
"test:watch": "jest --watch --config=jest.config.js",
"test:generate-output": "jest --config=jest.config.js --json --outputFile=.jest-test-results.json || true",
"test:ci": "jest --ci --config=jest.config.js --maxWorkers=2",
"lint": "eslint src --ext=ts,tsx --cache",
"prepare": "npm run build && husky install",
"storybook": "storybook dev -p 6006",
"build-storybook:v3": "storybook build -c .storybook -o ./reservoir/v3",
"prebuild:storybook": "npm run test:generate-output",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{jsx,ts,tsx}": "eslint src --ext=jsx,ts,tsx --cache --fix",
"*.{js,jsx,ts,tsx,css}": "prettier --write"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"overrides": {
"types-ramda": "0.29.4"
},
"dependencies": {
"@chakra-ui/react": "2.8.2",
"@chakra-ui/system": "2.6.2",
"@charlietango/use-native-lazy-loading": "1.10.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"framer-motion": "10.16.4",
"react-datepicker": "4.14.1",
"react-intersection-observer": "9.2.2",
"system-font-css": "2.0.2",
"typescript": "4.9.5"
},
"peerDependencies": {
"@chakra-ui/react": ">=2.8.2",
"@chakra-ui/system": ">=2.6.2",
"@emotion/react": ">=11.11.1",
"@emotion/styled": ">=11.11.0",
"framer-motion": ">=10.16.4",
"react": ">=17",
"react-dom": ">=17",
"typescript": ">=4.9.5"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@jest/core": "29.7.0",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@storybook/addon-a11y": "8.3.6",
"@storybook/addon-designs": "8.0.2",
"@storybook/addon-essentials": "8.3.6",
"@storybook/addon-interactions": "8.3.6",
"@storybook/addon-jest": "8.1.11",
"@storybook/addon-links": "8.1.11",
"@storybook/blocks": "8.3.6",
"@storybook/react": "8.3.6",
"@storybook/react-vite": "8.3.6",
"@storybook/test": "8.3.6",
"@testing-library/dom": "9.2.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.2.1",
"@types/jest": "29.4.0",
"@types/jest-axe": "3.5.3",
"@types/node": "18.13.0",
"@types/react": "18.2.21",
"@types/testing-library__jest-dom": "5.14.1",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"@vitejs/plugin-react": "4.2.1",
"eslint": "7.31.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.4",
"jest": "29.7.0",
"jest-axe": "9.0.0",
"jest-environment-jsdom": "29.7.0",
"jest-transformer-svg": "2.0.2",
"js-cookie": "^3.0.5",
"lint-staged": "10.5.4",
"normalize.css": "8.0.1",
"prettier": "2.4.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-autosuggest": "10.0.2",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"remark-gfm": "4.0.0",
"sass": "1.60.0",
"storybook": "8.3.6",
"ts-jest": "29.1.5",
"tslib": "2.3.0",
"typescript": "4.9.5",
"vite": "5.2.14",
"vite-plugin-dts": "2.1.0",
"vite-plugin-svgr": "4.2.0"
}
}