-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.45 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
{
"name": "blog_v2",
"version": "1.0.0",
"author": "Taichi Tsujioka",
"scripts": {
"dev": "next dev",
"clean": "rm -rf .next && rm -rf .linaria-cache",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*.{tsx,ts,js,jsx}' --ignore-path .eslintignore",
"fix": "yarn format && yarn lint:fix",
"format": "prettier --write '**/*.{tsx,ts,js,jsx}' --ignore-path .prettierignore",
"lint:fix": "eslint --fix '**/*.{tsx,ts,js,jsx}' --ignore-path .eslintignore",
"typecheck": "tsc --noEmit --pretty",
"generate": "DOTENV_CONFIG_PATH='.env.development' graphql-codegen --require dotenv/config --config codegen.yml",
"extract": "formatjs extract '(components|pages|hooks)/**/*.ts*' --out-file=./lang/en-US.json --id-interpolation-pattern='[sha512:contenthash:base64:6]' --format simple"
},
"devDependencies": {
"@formatjs/cli": "^4.2.9",
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/typescript-graphql-request": "^3.1.1",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-syntax-highlighter": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-formatjs": "^10.2.11",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.2.1",
"ts-loader": "8.1.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@linaria/babel-preset": "^3.0.0-beta.4",
"@linaria/core": "^3.0.0-beta.4",
"@linaria/react": "^3.0.0-beta.4",
"@linaria/shaker": "^3.0.0-beta.4",
"@linaria/webpack-loader": "^3.0.0-beta.4",
"@popperjs/core": "^2.9.2",
"@prefresh/next": "^1.4.6",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"next": "^10.2.0",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"preact": "^10.5.5",
"preact-render-to-string": "^5.1.11",
"react": "npm:@preact/compat@^0.0.3",
"react-dom": "npm:@preact/compat@^0.0.3",
"react-intl": "^5.17.1",
"react-markdown": "^6.0.2",
"react-popper": "^2.2.5",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.1.2",
"react-syntax-highlighter": "^15.4.3",
"rehype-slug": "^4.0.1",
"remark-gfm": "^1.0.0",
"svg-react-loader": "^0.4.6"
},
"license": "MIT"
}