forked from e-Spirit/fsxa-nuxt-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.68 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": "fsxa-nuxt-module",
"version": "7.15.1",
"description": "",
"main": "./dist/module/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"templates",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint src/**/*",
"prebuild": "rimraf dist",
"build": "tsc",
"build:local": "rimraf fsxa-nuxt-module-*.tgz && npm version prerelease --no-git-tag-version --preid alpha && npm run build && npm pack",
"test": "jest --runInBand --coverage=false",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"precommit": "lint-staged",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS"
},
"license": "Apache-2.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"keywords": [],
"author": "Tobias Golbs <golbs@e-spirit.com>",
"contributors": [
"Dominik Barczewski <barczewski@e-spirit.com>",
"Philipp Runge <p.runge@progani.com>",
"Nicolai Henczi <henczi@e-spirit.com>"
],
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^13.1.0",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^27.4.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.17.9",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^27.4.7",
"lint-staged": "^10.2.11",
"nuxt": "^2.15.8",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"express": "^4.17.1",
"fsxa-api": "^10.7.0",
"fsxa-pattern-library": "^8.15.0",
"lodash.camelcase": "^4.3.0",
"lodash.merge": "^4.6.2",
"lodash.startcase": "^4.4.0",
"vuex": "^3.6.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/e-Spirit/fsxa-nuxt-module.git"
}
}