-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
{
"name": "cib-expenses-stats",
"version": "1.0.0",
"description": "",
"main": "src/App.jsx",
"scripts": {
"clear-build-cache": "rm -rf .cache/ dist/",
"dev": "parcel src/index.html --open",
"build": "parcel build src/index.html --no-source-maps",
"format": "prettier --write \"src/**/*.{js,jsx,scss}\"",
"lint": "eslint \"src/**/*.{js,jsx,scss}\" --fix --cache --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewLawendy/cib-credit-card-stats.git"
},
"author": "Andrew Lawendy",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewLawendy/cib-credit-card-stats/issues"
},
"homepage": "https://github.com/AndrewLawendy/cib-credit-card-stats#readme",
"dependencies": {
"@amcharts/amcharts4": "^4.10.10",
"babel-plugin-react-css-modules": "^5.2.6",
"base64-arraybuffer": "^0.2.0",
"convert-excel-to-json": "^1.7.0",
"formik": "^2.2.3",
"node-sass": "^5.0.0",
"postcss-scss": "^3.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.2.4",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"use-local-storage-state": "^6.0.0",
"wouter": "^2.5.3",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"sass": "^1.29.0"
},
"browserslist": [
"last 2 Chrome versions"
],
"lint-staged": {
"*.{jsx}": [
"yarn lint"
],
"*.{scss,yml,json,prettierrc}": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}