forked from UTDNebula/planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.67 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
{
"name": "nebula-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "NODE_ENV=test eslint --fix .",
"format": "prettier --write {pages,components,modules}/**/*.{tsx,ts,js}",
"format:all": "prettier --write .",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.2.3",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.67",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"@react-pdf/renderer": "^3.0.0",
"@reduxjs/toolkit": "^1.6.0",
"animate.css": "^4.1.1",
"eslint": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"firebase": "^8.4.1",
"formidable": "^2.0.1",
"framer-motion": "^6.2.3",
"intersection-observer": "^0.12.2",
"next": "^12.1.0",
"pdf-parse": "^1.1.1",
"prettier-eslint": "^13.0.0",
"react": "^17.0.2",
"react-awesome-reveal": "^4.1.0",
"react-beautiful-dnd": "^13.1.0",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "^17.0.2",
"react-intersection-observer": "^9.4.0",
"react-redux": "^7.2.4",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tss-react": "^3.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.14",
"@types/react": "^17.0.39",
"@types/react-beautiful-dnd": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"postcss": "^8.4.6",
"prettier": "^2.3.2",
"react-styleguidist": "^11.2.0",
"tailwindcss": "^3.0.18",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.{tsx,ts,js}": [
"cross-env NODE_ENV=test 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"
}
}
}