-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
60
61
62
63
64
65
66
{
"name": "my-best-life",
"version": "0.0.1",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --cache --ext ts --ext tsx --ext js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@vercel/node": "2.4.5",
"csv-parser": "3.0.0",
"date-fns": "2.28.0",
"google-spreadsheet": "3.3.0",
"gray-matter": "4.0.3",
"next": "12.2.2",
"next-pwa": "5.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotjar": "5.0.0",
"react-is": "18.2.0",
"remark": "13.0.0",
"remark-html": "13.0.2",
"simple-oauth2": "2.5.2",
"styled-components": "5.3.5",
"uuid-by-string": "3.0.7"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/google-spreadsheet": "3.2.3",
"@types/node": "16.11.43",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/simple-oauth2": "2.5.2",
"@types/styled-components": "5.1.25",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.6",
"babel-plugin-styled-components": "2.0.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "8.5.0",
"husky": "4.3.8",
"lint-staged": "13.0.3",
"netlify-cms-app": "2.15.72",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"license": "GPL-3.0-or-later"
}