-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.52 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "vi-saas-frontend-theme",
"title": "SaaS Online-Beratung",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/virtualidentityag/vi-saas-frontend-theme.git"
},
"scripts": {
"start": "onlineberatung-frontend start",
"build": "onlineberatung-frontend build",
"test": "concurrently --kill-others --success first \"cross-env BROWSER=none API_URL_FOR_LOCAL_DEVELOPMENT=test PORT=9000 npm start\" \"wait-on http://localhost:9000 && cypress run\"",
"release": "standard-version",
"serve": "serve build",
"lint": "npm run lint:scripts && npm run lint:style",
"lint:scripts": "eslint src && tsc",
"lint:style": "stylelint src/**/*.scss",
"dev": "run-s dev:cy",
"dev:cy": "run-p dev:cy:*",
"dev:cy:start-cra": "BROWSER=none npm start",
"dev:cy:wait-and-open": "run-s dev:cy:wait-and-open:*",
"dev:cy:wait-and-open:wait-on-cra": "wait-on http://localhost:9000",
"dev:cy:wait-and-open:open": "cross-env NODE_ENV=development cypress open"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@onlineberatung/onlineberatung-frontend": "git+https://github.com/virtualidentityag/vi-saas-frontend.git#develop",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"clsx": "^1.2.1",
"core-js": "^3.24.1",
"deepmerge": "^4.2.2",
"element-closest": "^3.0.2",
"element-remove": "^1.0.4",
"element-scroll-polyfill": "^1.0.1",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^3.9.2",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"html-react-parser": "^1.4.14",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-router-dom": "5.2.0",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@cypress/webpack-preprocessor": "^5.14.0",
"breakpoint-sass": "2.7.1",
"concurrently": "^6.5.1",
"cross-env": "^7.0.2",
"cypress": "^10.8.0",
"cypress-file-upload": "^5.0.8",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.0",
"lint-staged": "^10.5.1",
"mock-socket": "^9.1.5",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"react-i18next": "^11.18.6",
"sanitize.css": "12.0.1",
"serve": "^11.3.2",
"standard-version": "9.3.0",
"ts-loader": "^9.4.1",
"wait-on": "^5.2.0"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:cypress/recommended"
],
"overrides": [
{
"files": "*.spec.ts",
"rules": {
"@typescript-eslint/no-unused-expressions": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"trailingComma": "none",
"singleQuote": true,
"useTabs": true,
"tabWidth": 4,
"quoteProps": "consistent"
},
"lint-staged": {
"**/*.+(js|jsx|css|less|scss|ts|tsx|md|json)": [
"npx prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}