-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.85 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
{
"name": "nypl-header-app",
"version": "1.2.2",
"description": "NYPL Header App",
"scripts": {
"dev": "vite",
"build:header": "vite build --config vite.config.header.ts --mode=production",
"build:footer": "vite build --config vite.config.footer.ts --mode=production",
"build:app": "vite build --config vite.config.ts --mode=production",
"build:app:watch": "vite build --config vite.config.ts --mode=production --watch",
"build": "tsc && npm run build:header && npm run build:footer && npm run build:app",
"preview": "vite preview",
"preview:watch": "vite preview --port 3001",
"prod": "vite preview --port 3001",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@nypl/design-system-react-components": "2.1.1",
"js-cookie": "3.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"vite-plugin-svgr": "2.4.0"
},
"devDependencies": {
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"@types/jest": "29.5.0",
"@types/jest-axe": "3.5.5",
"@types/jsdom": "16.2.4",
"@types/node": "18.13.0",
"@types/react": "17.0.35",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@vitejs/plugin-react": "3.1.0",
"eslint": "8.36.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-axe": "7.0.1",
"jest-environment-jsdom": "29.5.0",
"jsdom": "16.7.0",
"react-test-renderer": "17.0.2",
"ts-jest": "29.1.0",
"typescript": "4.9.3",
"vite": "4.5.3"
}
}