-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.57 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
{
"name": "boxting-admin",
"description": "Boxting is the most secure voting solution.",
"version": "1.0.0",
"private": true,
"author": "Enzo Lizama & Rodrigo Guadalupe",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"export": "npm run build && next export && mv out _static",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@chakra-ui/core": "1.0.0-rc.8",
"@chakra-ui/icons": "1.0.0-rc.8",
"@chakra-ui/utils": "^1.0.0-next.3",
"@hookform/resolvers": "^0.1.1",
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"axios": "0.21.1",
"dotenv": "8.2.0",
"firebase": "8.2.7",
"framer-motion": "2.9.4",
"fs": "0.0.1-security",
"html2canvas": "1.0.0-rc.7",
"js-cookie": "2.2.1",
"jspdf": "2.3.1",
"jspdf-autotable": "3.5.14",
"moment": "2.29.1",
"mui-datatables": "3.7.6",
"next": "10.2.2",
"next-cookies": "2.0.3",
"react": "16.13.1",
"react-datepicker": "3.3.0",
"react-datetime": "3.0.4",
"react-dom": "16.13.1",
"react-hook-form": "6.9.4",
"react-image-file-resizer": "0.4.1",
"recharts": "2.0.9",
"styled-components": "5.2.0",
"tslint": "6.1.3"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/axios": "0.14.0",
"@types/js-cookie": "^2.2.6",
"@types/mui-datatables": "3.7.0",
"@types/node": "14.11.8",
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"typescript": "4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}