-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.2 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
{
"name": "zg-frontend-2",
"private": true,
"scripts": {
"dev": "env-cmd -f ./.env.development next dev -p 8080",
"build:dev": "NODE_ENV=development next build",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"start:dev": "NODE_ENV=development next start -p 8080",
"start:staging": "next start -p 3200",
"lint": "next lint",
"i18n:extract": "formatjs extract \"src/**/*.{ts,tsx}\" --out-file content/locales/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"i18n:compile": "formatjs compile-folder content/locales content/compiled-locales",
"i18n:manage": "node ./translation-runner.js",
"i18n": "npm run i18n:extract && npm run i18n:compile",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@next/bundle-analyzer": "^12.0.4",
"@svgr/webpack": "^6.5.1",
"@tippyjs/react": "^4.2.6",
"@types/numeral": "^2.0.2",
"@types/ua-parser-js": "^0.7.36",
"class-transformer": "^0.4.0",
"cookies-next": "^2.1.1",
"cross-env": "^7.0.3",
"inspirational-quotes": "^2.0.1",
"lodash": "^4.17.21",
"next": "^12.3.4",
"next-sitemap": "^1.6.203",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-intl": "^5.21.2",
"react-transition-group": "^4.4.5",
"reflect-metadata": "^0.1.13",
"sass": "^1.43.4",
"sharp": "^0.32.6",
"ua-parser-js": "^1.0.33"
},
"devDependencies": {
"@formatjs/cli": "^4.4.0",
"@next/eslint-plugin-next": "^12.1.0",
"@types/lodash": "^4.14.177",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"@types/react-transition-group": "^4.4.5",
"@types/sass": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"react-intl-translations-manager": "^5.0.3",
"typescript": "4.5"
}
}