generated from CryogenicPlanet/covid-resources
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "next-typescript-tailwind-eslint-prettier",
"author": "@CryogenicPlanet",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "yarn cron & next start",
"type-check": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check **/*.ts*",
"prettier:fix": "prettier --write **/*.ts*",
"verify": "yarn prettier && yarn lint",
"verify:fix": "yarn prettier:fix && yarn lint:fix",
"cron": "cron helpers/gitPushCron",
"cleanData": "prettier --write _data/*.json"
},
"dependencies": {
"@headlessui/react": "^1.0.0",
"@heroicons/react": "^1.0.1",
"@risingstack/react-easy-state": "^6.3.0",
"@tailwindcss/forms": "^0.3.2",
"autoprefixer": "^10.2.4",
"axios": "^0.21.1",
"cron-cli": "^0.3.4",
"fuse.js": "^6.4.6",
"next": "latest",
"postcss": "^8.2.4",
"react": "^17.0.1",
"react-dom": "^16.12.0",
"react-google-recaptcha": "^2.1.0",
"react-hot-toast": "^1.0.2",
"tailwindcss": "^2.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tailwindcss/jit": "^0.1.18",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-google-recaptcha": "^2.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"prettier-config-standard": "^1.0.1",
"typescript": "4.0"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"pre-push": "yarn verify"
}
}
}