forked from UTDNebula/utd-trends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.61 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
{
"name": "athena",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"preinstall": "npx npm-force-resolutions"
},
"resolutions": {},
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.6.0",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.4.2",
"ansi-regex": "^6.0.1",
"apexcharts": "^3.33.2",
"autoprefixer": "^10.4.2",
"babel-plugin-styled-components": "^2.0.7",
"chart.js": "^3.7.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"framer-motion": "^6.2.8",
"html-loader": "^3.1.0",
"lodash": "^4.17.21",
"markdown-loader": "^8.0.0",
"next": "12.1.0",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-apexcharts": "^1.3.9",
"react-chartjs-2": "^4.0.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "17.0.2",
"react-styleguidist": "^11.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.23",
"ts-loader": "^9.2.8",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/lodash": "^4.14.179",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"babel-loader": "^8.2.4",
"babel-polyfill": "^6.26.0",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.9.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"typescript": "4.5.5"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"lint-staged": {
"*.{tsx,ts,js}": [
"eslint --cache --fix .",
"prettier --write {pages,components,modules}/**/*.{tsx,ts,js}"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableSubjectLowerCase": true,
"maxHeaderWidth": 72,
"maxLineWidth": 80,
"defaultType": "chore"
}
}
}