-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.8 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
{
"name": "drbl",
"version": "1.0.0",
"type": "module",
"main": "src/index.tsx",
"license": "MIT",
"scripts": {
"start": "webpack serve",
"build": "webpack",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:format": "prettier -w .",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "husky install",
"precommit": "npm run prettier:format && npm run precommitbase",
"precommitbase": "npm run lint && npm run typecheck",
"precommitinternal": "npm run prettier:check && npm run precommitbase"
},
"browserslist": "> 0.25%, not dead",
"husky": {
"hooks": {
"pre-commit": "npm run precommitinternal"
}
},
"dependencies": {
"chart.js": "^4.3.0",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-horizontal-scrolling-menu": "^4.1.0",
"react-icons": "^4.10.1",
"react-router-dom": "^6.14.1"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@linaria/babel-preset": "^4.4.5",
"@linaria/core": "^4.2.10",
"@linaria/react": "^4.3.8",
"@linaria/webpack5-loader": "^4.1.17",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.6.1",
"jest-transformer-svg": "^2.0.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.25",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.0",
"react-is": "^18.2.0",
"react-test-renderer": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"styled-components": "^6.0.3",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}