-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "my-adventuring-party",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT:-\"3000\"}",
"migrate": "dotenv -- ley",
"dbt": "yarn migrate down && yarn migrate up",
"heroku-postbuild": "yarn migrate up && yarn build"
},
"dependencies": {
"@apollo/client": "^3.2.5",
"apollo-server-micro": "^2.19.0",
"argon2": "^0.27.0",
"camelcase-keys": "^6.2.2",
"cookie": "^0.4.1",
"csrf": "^3.1.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"graphql": "^15.4.0",
"klona": "^2.0.4",
"ley": "^0.6.0",
"next": "10.0.0",
"next-cookies": "^2.0.3",
"postgres": "^1.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.10.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@types/node": "14.14.30",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"@upleveled/eslint-config-upleveled": "1.7.2",
"babel-eslint": "10.1.0",
"eslint": "7.20.0",
"eslint-config-react-app": "6.0.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-flowtype": "5.2.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.10.1",
"eslint-plugin-unicorn": "28.0.2",
"typescript": "4.1.5"
},
"cacheDirectories": [
".next/cache"
]
}