-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 964 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
{
"name": "@faustjs/next-headless-getting-started",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"dev": "next dev -p $PORT",
"build": "next build",
"start": "next start",
"clean": "rimraf .next node_modules",
"lint": "next lint",
"generate": "gqty generate",
"wpe-build": "next build"
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@faustjs/core": "^0.15.7",
"@faustjs/next": "^0.15.9",
"next": "^12.2.4",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.54.0",
"sharp": "^0.30.5"
},
"devDependencies": {
"@gqty/cli": "^3.1.0",
"@types/node": "^17.0.17",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"dotenv-flow": "3.2.0",
"eslint": "^8.4.1",
"eslint-config-next": "^12.0.7",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
}
}