This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.04 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
{
"name": "gc-accessibility-passport",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run h2-build && npm run intl-compile && next build",
"start": "next start",
"lint": "next lint",
"h2-watch": "h2-watch",
"h2-build": "npx h2-build",
"intl-extract": "formatjs extract './{pages,components,messages}/**/*.{js,ts,tsx}' --ignore './**/*.d.ts' --out-file ./lang/en.json --id-interpolation-pattern [sha512:contenthash:base64:6]",
"intl-compile": "formatjs compile ./lang/fr.json --out-file ./lang/frCompiled.json",
"check-intl": "node ./tools/checkIntl.js --en ./lang/en.json --fr ./lang/fr.json --rm-orphaned --output-untranslated ./lang/untranslated.json --whitelist ./lang/whitelist.json",
"check-intl-merge": "node ./tools/checkIntl.js --en ./lang/en.json --fr ./lang/fr.json --rm-orphaned --output-untranslated ./lang/untranslated.json --whitelist ./lang/whitelist.json --merge-fr ./lang/newTranslations.json"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@reach/dialog": "^0.17.0",
"iron-session": "^6.0.5",
"json-loader": "^0.5.7",
"lodash": "^4.17.21",
"next": "12.1.0",
"octokit": "^1.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.28.0",
"react-intl": "^5.24.6",
"react-select": "^5.2.2",
"swr": "^1.2.2"
},
"devDependencies": {
"@formatjs/cli": "^4.8.2",
"@hydrogen-design-system/hydrogen.css": "^1.1.17",
"@next/eslint-plugin-next": "^12.1.0",
"@types/lodash": "^4.14.180",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-plugin-formatjs": "^10.3.18",
"eslint": "^8.9.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"typescript": "4.5.5",
"yargs": "^17.5.1"
}
}