-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "dancefest",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --cache --format stylish",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint . --format stylish --fix",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@cleandersonlobo/react-mic": "^1.2.0",
"@prisma/client": "2.20.1",
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"formik": "^2.2.6",
"husky": "4",
"json2csv": "^5.0.6",
"next": "10.0.7",
"next-auth": "^3.4.2",
"next-images": "^1.7.0",
"next-s3-upload": "^0.1.4",
"nodemailer": "^6.4.18",
"pg": "^8.5.1",
"react": "17.0.2",
"react-csv": "^2.0.3",
"react-datepicker": "^3.7.0",
"react-dom": "17.0.2",
"react-loader-spinner": "^4.0.0",
"react-modal": "^3.12.1",
"react-paginate": "^7.1.2",
"react-select": "^4.1.0",
"react-simple-snackbar": "^1.1.11",
"react-table": "^7.6.3",
"sass": "^1.32.7",
"unstated-next": "^1.1.0",
"validator": "^13.7.0",
"yocto-queue": "^0.1.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prisma": "^2.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,scss,md}": "prettier --write"
}
}