-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 939 Bytes
/
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
{
"name": "adventure-cards-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@usedapp/core": "^0.5.3",
"csstype": "^3.0.9",
"graphql": "^15.6.0",
"graphql-request": "^3.5.0",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.5",
"socket.io-client": "^4.2.0",
"use-onclickoutside": "^0.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "17.0.15",
"@types/uuid": "^8.3.1",
"autoprefixer": "^10.3.1",
"dotenv": "^10.0.0",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7",
"typescript": "4.3.5"
},
"prettier": {
"trailingComma": "es5",
"printWidth": 110,
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"engines": {
"node": "16.x"
}
}