-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
67
68
69
{
"name": "typescript-nextjs-starter",
"description": "A TypeScript starter for Next.js that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": "João Pedro Schmitz <[email protected]> (@jpedroschmitz)",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"deploy-weavedb": "yarn build && node scripts/deployFromSourceTx.js mainnet jhQ9kWIqjNYzGrg96zr7q7xbot4NwkKT8UZwsrb-fvE 3OnjOPuWzB138LOiNxqq2cKby2yANw6RWcQVEkztXX8 Awwzwvw7qfc58cKS8cG3NsPdDet957-Bf-S1RcHry0w",
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@chakra-ui/react": "2.4.9",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@next/font": "13.1.6",
"dotenv": "16.0.3",
"formik": "2.2.9",
"framer-motion": "9.0.1",
"jotai": "2.0.0",
"localforage": "1.10.0",
"moment": "2.29.4",
"next": "13.1.6",
"pnpm": "7.27.0",
"ramda": "0.28.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"react-scrollable-feed": "1.3.1",
"weavedb-sdk": "0.18.5"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/node": "18.11.18",
"@types/ramda": "0.28.22",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"typescript": "4.9.5"
}
}