-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.97 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
{
"name": "dpla-end-user-site",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "yarn && node server.js",
"clean": "rm -rf .next ./build ./coverage ./node_modules",
"build": "yarn && NODE_ENV=production next build",
"start": "NODE_ENV=production node server.js",
"docker:build": "docker build -t dpla-frontend .",
"docker:clean": "docker container rm -f dpla-frontend; docker image rm -f dpla-frontend",
"docker:run": "docker run -p 3000:3000 -d --name dpla-frontend dpla-frontend:latest",
"docker:logs": "docker logs -f dpla-frontend",
"analyze": "yarn && ANALYZE=true yarn build",
"test": "mocha",
"lint": "next lint",
"cy:fixtures": "node cypress/restFixtures.js",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run",
"cy:record": "./node_modules/.bin/cypress run --record"
},
"dependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.11.3",
"@sentry/nextjs": "^8",
"@sentry/node": "^8.48.0",
"@sentry/profiling-node": "^8.48.0",
"@zeit/next-source-maps": "^0.0.3",
"autoprefixer": "^9.6.1",
"aws-sdk": "^2.502.0",
"axios": "^0.28.0",
"babel": "^6.23.0",
"babel-loader": "^8.0.6",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.4",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"dayjs": "^1.10.7",
"dotenv": "^8.0.0",
"express": "^4.20.0",
"express-http-proxy": "^1.5.1",
"google-auth-library": "^5.1.0",
"googleapis": "^41.0.1",
"html-entities": "^1.2.1",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^3.0.0",
"localforage": "^1.10.0",
"next": "^12.3.4",
"nookies": "^2.0.8",
"openseadragon": "^2.4.1",
"postcss-loader": "^3.0.0",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-aria-modal": "^4.0.0",
"react-dom": "^17.0.2",
"react-markdown": "^4.0.1",
"react-slick": "^0.28.1",
"sass": "^1.39.0",
"slick-carousel": "^1.8.1",
"striptags": "^3.1.1",
"sw-precache-webpack-plugin": "^0.11.5"
},
"devDependencies": {
"@babel/runtime": "^7.5.5",
"@next/bundle-analyzer": "^13.1.1",
"@types/cypress": "^1.1.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-preset-react-app": "^9.0.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"cypress": "^12.2.0",
"cypress-plugin-snapshots": "^1.4.4",
"eslint": "^8.0.0",
"eslint-config-next": "^13.1.1",
"file-loader": "^4.1.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^9.2.1",
"node-fetch": "^2.6.7",
"object-assign": "^4.1.1",
"prettier": "^1.18.2",
"promise": "^8.0.3",
"url-loader": "^2.1.0"
},
"eslintConfig": {
"extends": "next/core-web-vitals",
"rules": {
" @next/next/no-img-element": "off"
}
}
}