-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "peko-app-com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "eslint . --ext .ts,.tsx --fix",
"postbuild": "next-on-netlify"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.36",
"clsx": "^1.1.1",
"formik": "^2.2.6",
"framer-motion": "^3.9.0",
"next": "10.0.0",
"next-on-netlify": "^2.6.0",
"pg": "^8.4.2",
"pg-native": "file:./pg-native",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-spinners": "^0.9.0",
"sass": "^1.27.0",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/node": "^14.14.5",
"@types/pg": "^7.14.6",
"@types/react": "^16.9.54",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"autoprefixer": "^10.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"tailwindcss": "^1.9.6",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"prettier --write"
]
}
}