-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "nextjs-template-nekoya3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:static": "next build && next export",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext js,jsx,ts,tsx",
"lint:fix": "eslint --ext js,jsx,ts,tsx --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn type-check && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"yarn lint:fix"
]
},
"dependencies": {
"@chakra-ui/react": "^1.6.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@icon-park/react": "^1.3.3",
"deck.gl": "^8.4.13",
"framer-motion": "^4",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-map-gl": "^6.1.12",
"react-notion": "^0.9.3",
"swr": "^0.5.5"
},
"devDependencies": {
"@danmarshall/deckgl-typings": "^4.9.1",
"@types/node": "^15.0.1",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-map-gl": "^5.2.9",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"critters": "^0.0.10",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sass": "^1.32.12",
"typescript": "^4.2.4",
"typescript-plugin-css-modules": "^3.2.0"
}
}