-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "word-quiz",
"version": "0.0.1",
"author": "nus3 <[email protected]>",
"license": "UNLICENSED",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"setup": "yarn --immutable",
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"typecheck": "tsc",
"prepare": "husky install",
"update-words": "ts-node --project scripts/tsconfig.json scripts/update-words/index.ts",
"check-words": "ts-node --project scripts/tsconfig.json scripts/check-words/index.ts",
"deploy-gist": "ts-node --project scripts/tsconfig.json scripts/deploy-gist/index.ts"
},
"lint-staged": {
"*.@(ts|tsx)": "bash -c tsc",
"*.@(js|ts|tsx)": "eslint --fix"
},
"dependencies": {
"@headlessui/react": "1.4.1",
"classnames": "2.3.1",
"next": "11.1.2",
"next-pwa": "5.4.4",
"next-seo": "4.28.1",
"octokit": "1.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.17.0",
"react-icons": "4.2.0",
"react-query": "3.34.16"
},
"devDependencies": {
"@notionhq/client": "0.4.9",
"@types/node": "16.10.2",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/experimental-utils": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"autoprefixer": "10.3.6",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-unused-imports": "1.1.5",
"husky": "7.0.2",
"lint-staged": "11.1.2",
"postcss": "8.3.8",
"postcss-nested": "5.0.6",
"prettier": "2.4.1",
"tailwindcss": "2.2.16",
"ts-node": "10.4.0",
"typescript": "4.4.3"
}
}