-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.67 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
{
"name": "next-headless-getting-started",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rimraf .next node_modules",
"lint": "next lint",
"generate": "gqty generate",
"wpe-build": "next build",
"wp-env": "wp-env",
"download-wpe-headless": "cd plugins && (wget -q https://wp-product-info.wpesvc.net/v1/plugins/wpe-headless?download -O wpe-headless.zip || curl -L -o wpe-headless.zip https://wp-product-info.wpesvc.net/v1/plugins/wpe-headless?download) && unzip -o wpe-headless.zip && rm wpe-headless.zip",
"download-atlas-content-modeler": "cd plugins && (wget -q https://wp-product-info.wpesvc.net/v1/plugins/atlas-content-modeler?download -O atlas-content-modeler.zip || curl -L -o atlas-content-modeler.zip https://wp-product-info.wpesvc.net/v1/plugins/atlas-content-modeler?download) && unzip -o atlas-content-modeler.zip && rm atlas-content-modeler.zip",
"download-plugins": "npm run download-wpe-headless && npm run download-atlas-content-modeler",
"wp-env:create": "npm run download-plugins && wp-env start --update && wp-env run cli wp rewrite flush"
},
"dependencies": {
"@faustjs/core": "^0.10.2",
"@faustjs/next": "^0.10.2",
"next": "^11.1.2",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gtm-module": "^2.0.11",
"sass": "^1.39.2"
},
"devDependencies": {
"@gqty/cli": "^1.1.4",
"@types/react": "^17.0.20",
"@wordpress/env": "^4.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
}
}