-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "timeline",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"check-types": "tsc --pretty --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.51",
"@mui/material": "^5.0.4",
"@notionhq/client": "^0.4.4",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-github-corner": "^2.5.0",
"swr": "^1.0.1"
},
"devDependencies": {
"@types/react": "17.0.30",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"typescript": "4.4.4"
},
"lint-staged": {
"*.{ts,tsx}": "yarn lint",
"*.{js,jsx,ts,tsx,json,md}": "yarn format"
}
}