-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.43 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
{
"name": "digital-collections",
"version": "0.2.2",
"private": true,
"scripts": {
"dev": "next dev",
"dev:newrelic": "NODE_OPTIONS='-r dotenv/config .env.local -r newrelic' next dev",
"build": "next build",
"update-changelog": "cp ./CHANGELOG.md ./public/changelog.md",
"start": "next start",
"start:newrelic": "NODE_OPTIONS='-r dotenv/config .env.prod -r newrelic' next start",
"lint": "next lint",
"test": "jest --config=jest.config.ts",
"test:API": "jest --config=jestAPI.config.ts",
"test:all": "npm run test && npm run test:API",
"test:watch": "jest --watch --config=jest.config.ts",
"test:ci": "jest --ci --config=jest.config.ts",
"prepare": "husky install",
"homepageImageLoadingTestQa": "node test/homepageImageLoadingTest.js",
"homepageImageLoadingTestProd": "node test/homepageImageLoadingTest.js --prod",
"homepageFeaturedImageLoadingTestQa": "node test/homepageFeaturedImageLoadingTest.js",
"homepageFeaturedImageLoadingTestProd": "node test/homepageFeaturedImageLoadingTest.js --prod",
"legacyHomepageImageLoadingTestProd": "node test/legacyHomepageImageLoadingTest.js --prod"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx eslint --fix",
"npx prettier --write"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"dependencies": {
"@samvera/clover-iiif": "^2.9.0",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"dotenv": "16.4.5",
"eslint": "8.48.0",
"googleapis": "129.0.0",
"newrelic": "12.5.1",
"next": "14.2.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "0.33.5",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"ua-parser-js": "^1.0.38",
"vite": "4.5.2",
"winston": "3.9.0"
},
"devDependencies": {
"@nypl/design-system-react-components": "3.4.0",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.5",
"@types/jest-axe": "3.5.6",
"@types/newrelic": "^9.14.3",
"@types/ua-parser-js": "^0.7.39",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.0",
"jest": "29.7.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"lint-staged": "15.0.1",
"prettier": "3.0.3",
"puppeteer": "^22.6.2"
}
}