forked from uwblueprint/website-bp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "website-bp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:eslint && yarn lint:tsc",
"lint:eslint": "eslint **/*.{js,jsx,ts,tsx} --cache --format stylish",
"lint:tsc": "tsc --noemit",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"fix:eslint": "eslint '**/*.{js,jsx,ts,tsx}' --format stylish --fix",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@babel/runtime": "^7.16.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.3.0",
"@types/react-csv": "^1.1.3",
"@types/uuid": "^8.3.4",
"dayjs": "^1.11.7",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase": "^9.12.1",
"formik": "^2.2.9",
"mui-datatables": "^3.8.2",
"next": "^12.3.1",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-csv": "^2.2.2",
"react-dom": "17.0.2",
"tslib": "^2.4.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/mui-datatables": "^3.7.3",
"@types/node": "18.11.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.4.12",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^8.0.1",
"lint-staged": "^10.5.3",
"postcss": "^8.4.17",
"prettier": "^2.5.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}