-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.73 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": "pages-starter-react-locations",
"version": "0.0.0",
"description": "An example repository to help users get started with React development on Yext Pages",
"author": "[email protected]",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"dev": "pages dev",
"build:local": "pages build",
"build": "yext pages build && yext pages generate-test-data && yext pages render",
"build:serve": "npm run build && yext pages serve",
"serve": "yext pages serve",
"features": "pages generate features",
"fmt": "prettier -w .",
"lint": "eslint .",
"clean": "rm -rf .artifact-output .yext/ dist/ localData sites-rendered-output",
"generate-notices": "generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"prod": "pages prod"
},
"engines": {
"node": ">=17"
},
"dependencies": {
"@headlessui/react": "^1.7.12",
"@heroicons/react": "^2.0.14",
"classnames": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-phone-number-input": "^3.2.19",
"tailwind-merge": "^1.6.2",
"@yext/sites-components": "1.0.0-rc.5"
},
"devDependencies": {
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-react": "^4.0.4",
"@yext/pages": "https://github.com/mkilpatrick/pagesjs-sumo-demo/raw/master/yext-pages-1.0.0-rc.6-beta1.tgz",
"autoprefixer": "^10.4.8",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.7",
"generate-license-file": "^1.3.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"vite": "4.4.9"
}
}