-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.23 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
{
"name": "winecellar",
"version": "5.1.18",
"description": "Remember all the wine I have drink this quarantine",
"private": true,
"contributors": [
"Melania <melapbq@gmail.com> (https://www.instagram.com/melapbq/?hl=es)"
],
"scripts": {
"build-dev": "NODE_ENV=development webpack --mode=development",
"build": "NODE_ENV=production webpack --mode=production",
"cm": "npx git-cz",
"dev-server": "NODE_ENV=development webpack-dev-server --open",
"release": "standard-version",
"test": "jest --coverage --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Paker30/winecellar.git"
},
"keywords": [
"react",
"wpa",
"wine cellar"
],
"author": "Fran",
"license": "ISC",
"bugs": {
"url": "https://github.com/Paker30/winecellar/issues"
},
"homepage": "https://github.com/Paker30/winecellar#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^8.3.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@svgr/webpack": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"commitizen": "^4.3.0",
"css-loader": "^6.8.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^6.0.0",
"less-vars-to-js": "^1.3.0",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"standard-version": "^8.0.1",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"antd": "^5.20.6",
"aphrodite": "^2.4.0",
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.6.1",
"moment": "^2.29.4",
"pouchdb-browser": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-is": "^18.2.0",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.1",
"styled-media-query": "^2.1.2",
"uniqid": "^5.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"verbose": true,
"displayName": "wine cellar",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|svg)$": "identity-obj-proxy"
},
"coverageThreshold": {
"global": {
"branches": 20,
"functions": 50,
"lines": 50,
"statements": -10
}
}
}
}