-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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": "graphtoy-plus",
"version": "0.6.1",
"private": true,
"dependencies": {
"@prisma/client": "^4.1.0",
"axios": "^0.27.2",
"http-status": "^1.5.2",
"immer": "^9.0.15",
"mitt": "^3.0.0",
"next": "latest",
"nookies": "^2.5.2",
"object-hash": "^3.0.0",
"prismjs": "^1.28.0",
"react": "latest",
"react-dom": "latest",
"react-simple-code-editor": "^0.11.2",
"styled-components": "^5.3.5",
"zustand": "^4.0.0-rc.4"
},
"scripts": {
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier --write \"**/*.{ts,tsx}\" ",
"start": "next start",
"prisma:deploy": "prisma migrate deploy",
"prisma-pull-db": "prisma db pull",
"prisma:generate": "prisma generate",
"build-start": "next build && next start",
"build": "next build"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.41",
"@types/object-hash": "^2.2.1",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.3",
"prettier": "latest",
"prisma": "^4.1.0",
"typescript": "^4.7.4"
}
}