-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 3.44 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
{
"name": "yourdigitalrights",
"version": "2.1.0",
"license": "GPL3",
"private": true,
"scripts": {
"install-selenium": "./node_modules/.bin/selenium-standalone install",
"browser-test": "npx wdio run ./test/wdio.conf.js",
"test-serve": "npm start -- -p 3001",
"test": "npm run build && npm-run-all -p -r test-serve browser-test",
"setup-local-dynamo": "node setup/dynamo-tables",
"teardown-local-dynamo": "node setup/teardown-dynamo-tables",
"dev": "npm run extract:i18n && npm run compile:i18n && next",
"debug": "NODE_OPTIONS='--inspect' next dev",
"start": "next start ./src",
"build": "npm run extract:i18n && npm run compile:i18n && next build ./src",
"postbuild": "next-sitemap",
"deploy": "npx vercel",
"deploy:prod": "npx vercel --prod",
"deploy:prod1": "npx vercel alias vercel alias https://opt-out.vercel.app/ yourdigitalrights.org",
"clean": "rm -rf src/out && rm -rf src/.next && rm -rf ./next",
"extract:i18n": "formatjs extract 'src/**/*.js' --format crowdin --id-interpolation-pattern '[sha512:contenthash:base64:6]' --out-file lang/en.json",
"compile:i18n": "formatjs compile-folder --ast --format crowdin lang compiled-lang"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@formatjs/cli": "^6.2.12",
"@formatjs/intl-datetimeformat": "^6.12.5",
"@formatjs/intl-getcanonicallocales": "^2.3.0",
"@formatjs/intl-numberformat": "^5.4.1",
"@formatjs/intl-pluralrules": "^5.2.14",
"@formatjs/intl-relativetimeformat": "^11.2.14",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.11",
"@mui/material-nextjs": "^5.15.11",
"@mui/styles": "^5.15.11",
"@vercel/analytics": "^1.1.1",
"accepts": "^1.3.5",
"autoprefixer": "^10.4.20",
"aws-sdk": "^2.1354.0",
"clean-css": "^5.3.3",
"cookie-cutter": "^0.2.0",
"downshift": "^9.0.6",
"isomorphic-fetch": "^3.0.0",
"luxon": "^2.5.2",
"mailto-link": "^2.0.0",
"next": "^14.2.23",
"next-seo": "^6.4.0",
"next-sitemap": "^3.1.52",
"node-gyp": "^10.1.0",
"npm-check-updates": "^16.14.20",
"nunjucks": "^3.2.4",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^5.17.1",
"react-share": "^5.1.0",
"swr": "^1.3.0",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"vercel": "^39.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"@babel/register": "^7.21.0",
"@babel/runtime-corejs2": "^7.23.7",
"@wdio/cli": "^8.3.11",
"@wdio/local-runner": "^8.3.11",
"@wdio/mocha-framework": "^8.29.3",
"@wdio/spec-reporter": "^8.32.4",
"babel-plugin-formatjs": "^10.5.13",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"chai": "^4.1.2",
"chromedriver": "^131.0.1",
"mailto-parser": "^1.0.1",
"mocha": "^10.7.3",
"npm-run-all": "^4.1.3",
"prettier": "2.0.5",
"wdio-chromedriver-service": "^8.1.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"endOfLine": "lf",
"arrowParens": "avoid"
}
}