This repository was archived by the owner on Sep 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.52 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.52 KB
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
{
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.0",
"@react-spring/web": "^9.6.1",
"color": "^4.2.3",
"luxon": "^3.1.1",
"next": "^12.3.4",
"prism-react-renderer": "^1.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"smoothscroll-polyfill": "^0.4.4",
"twemoji": "^14.0.2"
},
"_moduleAliases": {
"src": "outDir/tsconfig.scripts.json/src",
"test": "outDir/tsconfig.scripts.json/test",
"scripts": "outDir/tsconfig.scripts.json/scripts"
},
"scripts": {
"jp": "IS_DEVELOPMENT=true DEV_LOCALE=jp NODE_OPTIONS=--max_old_space_size=4096 next -p 9991",
"en": "IS_DEVELOPMENT=true DEV_LOCALE=en NODE_OPTIONS=--max_old_space_size=4096 next -p 9990",
"jp:production": "PRODUCTION=jp next -p 9993",
"en:production": "PRODUCTION=en next -p 9992",
"dev:prepare": "cp tsconfig.dev.json tsconfig.json && rm -f report.*.json && rm -f *.log && rm -rf .next",
"dev": "pnpm dev:prepare && concurrently \"pnpm jp\" \"pnpm en\"",
"dev:en": "pnpm dev:prepare && pnpm en",
"ts-node": "tsc --project tsconfig.scripts.json && node -r module-alias/register",
"precompute": "tsc --project tsconfig.scripts.json && node -r module-alias/register outDir/tsconfig.scripts.json/scripts/precomputeExpressionContainers.js",
"tsc": "tsc",
"eslint": "eslint --ext .js,.ts,.tsx .",
"eslint:fix": "eslint --ext .js,.ts,.tsx --fix .",
"build": "cp tsconfig.prod.json tsconfig.json && next build",
"build:jp": "cp tsconfig.prod.json tsconfig.json && PRODUCTION_LOCALE=jp next build && PRODUCTION_LOCALE=jp next export --outdir jpOut",
"build:en": "cp tsconfig.prod.json tsconfig.json && PRODUCTION_LOCALE=en next build && PRODUCTION_LOCALE=en next export --outdir enOut",
"twemoji": "mkdir -p .twemoji && rm -f src/components/Twemoji/* && rm -f .twemoji/* && cp `pnpm --silent ts-node outDir/tsconfig.scripts.json/scripts/copyUsedEmojis.js` .twemoji && svgr --ext tsx --no-svgo --filename-case kebab --no-dimensions -d src/components/Twemoji .twemoji && eslint --ext .tsx --fix src/components/Twemoji && pnpm twemoji:bundle",
"twemoji:bundle": "pnpm ts-node outDir/tsconfig.scripts.json/scripts/generateEmojisBundle.js"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/eslint-plugin": "^11.10.0",
"@svgr/cli": "^6.5.1",
"@types/color": "^3.0.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/luxon": "^3.1.0",
"@types/material-ui": "^0.21.7",
"@types/node": "^18.11.17",
"@types/prettier": "^2.7.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"concurrently": "^7.6.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "^11.1.0",
"glob": "^8.0.3",
"module-alias": "^2.2.2",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}