forked from e-Spirit/fsxa-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.05 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
{
"name": "fsxa-pwa",
"version": "3.2.1",
"description": "Demo PWA built with FSXA",
"license": "Apache-2.0",
"private": true,
"contributors": [
"Dominik Barczewski <barczewski@e-spirit.com>"
],
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"generate": "nuxt generate",
"start": "nuxt start",
"lint": "eslint --ext .js,.vue,.ts,.tsx --ignore-path .gitignore .",
"test": "jest",
"commit": "git-cz",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"semantic-release": "semantic-release",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test dev http://localhost:3000 cy:run"
},
"lint-staged": {
"*.{js,vue,ts,tsx}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/core": "^2.15.8",
"@nuxtjs/axios": "^5.13.6",
"fsxa-nuxt-module": "^5.2.1",
"nuxt-start": "^2.15.8"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/tailwindcss": "^4.2.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.1",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@types/express": "^4.17.13",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@vue/test-utils": "^1.2.2",
"axios": "^0.21.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-vca-jsx": "^0.3.5",
"commitizen": "^4.2.3",
"core-js": "^3.17.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": ">=2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"fsxa-api": "^8.2.0",
"fsxa-pattern-library": "^6.2.0",
"fsxa-ui": "^4.1.0",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"lodash.get": "^4.4.2",
"nuxt": "^2.15.8",
"nuxt-property-decorator": "^2.8.8",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.7",
"tailwindcss": "^2.2.11",
"ts-jest": "^25.0.0",
"vue-jest": "^4.0.0-beta.3",
"vue-property-decorator": "^8.4.1",
"vue-tsx-support": "^2.3.3"
},
"optionalDependencies": {
"cypress": "^9.1.0",
"eslint-plugin-cypress": "^2.11.3",
"start-server-and-test": "^1.14.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}