forked from chibicode/Y-Combinator-for-Non-programmers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.34 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
{
"private": true,
"engines": {
"node": "13.x"
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@material-ui/core": "^4.6.0",
"color": "^3.1.2",
"luxon": "^1.21.1",
"next": "9.1.7",
"prism-react-renderer": "^1.0.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-spring": "^8.0.27",
"smoothscroll-polyfill": "^0.4.4",
"twemoji": "^12.1.3"
},
"_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": "yarn dev:prepare && concurrently \"yarn jp\" \"yarn en\"",
"dev:en": "yarn dev:prepare && yarn 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 `yarn --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 && yarn twemoji:bundle",
"twemoji:bundle": "yarn ts-node outDir/tsconfig.scripts.json/scripts/generateEmojisBundle.js"
},
"devDependencies": {
"@svgr/cli": "^5.0.1",
"@types/color": "^3.0.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/luxon": "^1.15.2",
"@types/material-ui": "^0.21.7",
"@types/node": "^13.1.6",
"@types/prettier": "^1.18.3",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.4",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "^10.0.3",
"babel-plugin-emotion": "^10.0.23",
"concurrently": "^5.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "4.5.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "2.3.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"module-alias": "^2.2.2",
"now": "^16.6.0",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
}
}