-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "next-headless-getting-started",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.19.1",
"npm": "8.19.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"clean": "rimraf .next node_modules",
"lint": "next lint",
"generate": "gqless generate",
"open": "run-s open:local",
"open:local": "open-cli http://localhost:3000/",
"wpe-build": "gqless generate && next build"
},
"dependencies": {
"@faustjs/core": "^0.7.0",
"@faustjs/next": "^0.7.0",
"@gqless/react": "^2.0.15",
"next": "^11.0.0",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.1",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2"
},
"devDependencies": {
"@gqless/cli": "^2.0.16",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
}
}