-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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
70
71
72
73
74
{
"name": "online-shop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"server": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node pages/api/graphql.ts'"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@prisma/client": "4.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/micro-cors": "^0.1.2",
"@types/react-star-rating-component": "^1.4.1",
"@types/validator": "^13.7.10",
"@types/ws": "^8.5.3",
"apollo-server": "^3.10.3",
"bcryptjs": "^2.4.3",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"jwt-token": "^1.0.9",
"micro": "^9.4.1",
"next": "12.3.1",
"next-redux-wrapper": "^8.0.0",
"next-seo": "^5.6.0",
"nodemon": "^2.0.20",
"prisma": "^4.5.0",
"prisma-dbml-generator": "^0.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-query": "^3.39.2",
"react-redux": "^8.0.4",
"react-simple-star-rating": "^5.1.3",
"sharp": "^0.31.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.8.4",
"validator": "^13.7.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.8.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"apollo-server-micro": "^3.11.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.3.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"micro-cors": "^0.1.1",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "4.8.4"
}
}