-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
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
{
"name": "calldata-webapp-landing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"precommit": "lint-staged && pretty-quick --staged",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\" --config ./.prettierrc.js"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.72",
"dotenv-load": "^2.0.0",
"next": "11.0.1",
"next-env": "^1.1.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "17.0.15",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"autoprefixer": "^10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"postcss": "^8.4.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"tailwindcss": "^2.2.19",
"typescript": "4.3.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --fix"
}
}