-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:* watch:*",
"dev:next": "next dev",
"build": "run-s generate:path build:next",
"build:next": "next build",
"start": "next start",
"lint": "run-p lint:*",
"lint:next": "next lint . --ignore-path .prettierignore --max-warnings 0",
"lint:prettier": "prettier --check .",
"lint:typecheck": "tsc --pretty --noEmit",
"format": "run-s format:eslint format:prettier",
"format:eslint": "yarn lint:next --fix",
"format:prettier": "yarn lint:prettier --write",
"watch:path": "pathpida --ignorePath .gitignore --output src/lib/pathpida --watch",
"generate:path": "pathpida --ignorePath .gitignore --output src/lib/pathpida"
},
"dependencies": {
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"firebase": "^9.12.1",
"framer-motion": "^7.5.4",
"next": "13.1.2",
"pathpida": "^0.18.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tsconfig/strictest": "^1.0.2",
"@types/node": "18.11.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.25.0",
"eslint-config-next": "13.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "4.8.4"
},
"volta": {
"node": "16.18.0",
"yarn": "1.22.19"
}
}