-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "exploration",
"private": true,
"description": "Fullstacks Exploration Project",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build && cp config/nginx.conf .next",
"start": "next start",
"lint": "eslint .",
"codegen": "dotenv -e .env.local graphql-codegen --config codegen.yml",
"gen": "prisma generate"
},
"dependencies": {
"@atomic-layout/emotion": "0.16.2",
"@emotion/react": "11.8.2",
"@fontsource/rajdhani": "4.5.5",
"@fullstacksjs/toolbox": "2.14.1",
"@mdx-js/react": "1.6.22",
"@prisma/client": "3.11.1",
"axios": "0.25.0",
"graphql": "16.2.0",
"graphql-request": "3.7.0",
"graphql-tag": "2.12.6",
"next": "12.1.4",
"next-auth": "4.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.34.11",
"rive-react": "1.0.3",
"theme-ui": "0.14.2"
},
"devDependencies": {
"@fullstacksjs/eslint-config": "8.3.0",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-graphql-request": "4.4.5",
"@graphql-codegen/typescript-operations": "2.3.5",
"@svgr/webpack": "6.2.1",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"dotenv-cli": "5.1.0",
"eslint": "8.12.0",
"prettier": "2.6.2",
"prisma": "3.11.1",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"volta": {
"node": "16.13.1",
"npm": "8.3.0"
}
}