forked from jordanmaslyn/middleware-domain-normalization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 922 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
{
"name": "next-headless-getting-started",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"clean": "rimraf .next node_modules",
"lint": "next lint",
"generate": "gqty generate",
"wpe-build": "next build"
},
"dependencies": {
"@faustjs/core": "^0.15.2",
"@faustjs/next": "^0.15.3",
"next": "^12.0.9",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.44.0",
"sharp": "^0.29.3"
},
"devDependencies": {
"@gqty/cli": "^2.3.1",
"@types/node": "^17.0.14",
"@types/react": "^17.0.37",
"@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"
}
}