forked from e-Spirit/crownpeak-pwa-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.01 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"version": "1.0.3",
"name": "fsxa-nuxt3-pwa",
"private": true,
"description": "Demo PWA built with Nuxt 3 and FSXA",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/e-Spirit/crownpeak-pwa-template.git"
},
"engines": {
"npm": "8.19.3",
"node": "18.13.0"
},
"scripts": {
"build": "nuxt build",
"commit": "npm run lint && git-cz",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue,.ts,.tsx --ignore-path .gitignore .",
"postinstall": "husky install",
"preview": "nuxt preview",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"start": "node ./.output/server/index.mjs",
"test": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@faker-js/faker": "^7.6.0",
"@nuxt/webpack-builder": "^3.2.3",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@testing-library/vue": "^6.6.1",
"@types/ws": "^8.5.4",
"autoprefixer": "^10.4.13",
"commitizen": "^4.3.0",
"cypress": "^12.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"nuxt": "^3.6.5",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"semantic-release": "^21.0.7",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"footer-max-line-length": [
2,
"always",
500
],
"body-max-line-length": [
2,
"always",
500
]
}
},
"lint-staged": {
"*.{js,vue,ts,tsx}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"fs-tpp-api": "^2.4.7",
"fsxa-api": "^10.16.3",
"highlight.js": "^11.7.0",
"reconnecting-websocket": "^4.4.0",
"utf-8-validate": "^5.0.10",
"ws": "^8.12.1",
"bufferutil": "^4.0.7"
}
}