-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
{
"name": "budget-view-chart",
"version": "0.2.3",
"description": "A React chart component specialising in display budget for personal finance.",
"keywords": [
"react",
"chart",
"widget",
"visualization",
"personal-finance",
"data-visualization",
"budget-tracker",
"echarts"
],
"author": "iLeoDo",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ileodo/budget-view-chart.git"
},
"bugs": {
"url": "https://github.com/ileodo/budget-view-chart/issues"
},
"homepage": "https://github.com/ileodo/budget-view-chart#readme",
"dependencies": {
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.23",
"@types/react": "^17.0.55",
"@types/react-dom": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./",
"watch": "tsc-watch",
"prepublish": "npm run build",
"test": "jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}