This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jss-vue-app",
"version": "21.0.0-canary",
"description": "Application utilizing Sitecore JavaScript Services and Vue (vue-cli).",
"private": true,
"config": {
"appName": "jss-vue-app",
"rootPlaceholders": [
"jss-main"
],
"sitecoreDistPath": "/dist/jss-vue-app",
"sitecoreConfigPath": "/App_Config/Include/zzz",
"graphQLEndpointPath": "/sitecore/api/graph/edge",
"buildArtifactsPath": "./dist",
"language": "en",
"templates": [
"vue"
]
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"author": {
"name": "Sitecore Corporation",
"url": "https://jss.sitecore.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sitecore/jss.git"
},
"bugs": {
"url": "https://github.com/sitecore/jss/issues"
},
"license": "Apache-2.0",
"scripts": {
"jss": "jss",
"start": "npm-run-all --parallel start:vue start:proxy",
"start:connected": "start:vue",
"build": "VITE_JSS_MODE=connected npm-run-all build:client build:server",
"scaffold": "vite-node scripts/scaffold-component",
"start:vue": "vite",
"start:proxy": "vite-node scripts/disconnected-mode-proxy",
"build:client": "vite build --ssrManifest",
"build:server": "vite build --config vite.config.server.ts --ssr src/entry-server.ts --emptyOutDir=false",
"graphql:update": "vite-node ./scripts/update-graphql-fragment-data",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jagaad/prettier-config": "^1.1.1",
"@rollup/plugin-graphql": "^1.1.0",
"@sitecore-jss/sitecore-jss-cli": "^21.0.0-canary",
"@sitecore-jss/sitecore-jss-dev-tools": "^21.0.0-canary",
"@sitecore-jss/sitecore-jss-vue": "^21.0.0-canary",
"@types/node": "^16.11.45",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/apollo-composable": "^4.0.0-alpha.12",
"@vue/apollo-ssr": "^4.0.0-alpha.11",
"@vue/server-renderer": "^3.0.11",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"constant-case": "^3.0.4",
"dotenv": "^16.0.1",
"esbuild-register": "^3.3.3",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.1",
"js-sha256": "^0.9.0",
"lint-staged": "^13.0.3",
"npm-run-all": "~4.1.5",
"prettier": "^2.7.1",
"sass": "^1.54.0",
"serialize-javascript": "^6.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-node": "^0.19.0",
"vue": "^3.2.37",
"vue-i18n": "^9.1.10",
"vue-meta": "^3.0.0-alpha.10",
"vue-router": "^4.1.2",
"vue-tsc": "^0.39.0"
},
"lint-staged": {
"*": "npx prettier --write --ignore-path .gitignore --ignore-unknown"
},
"prettier": "@jagaad/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}