-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "aiutiamoci-covid19",
"version": "0.6.13",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --config .eslintrc.js '**/*.{ts,tsx,js}'",
"lint:prepush": "eslint --fix --config .eslintrc.prepush.js '**/*.{ts,tsx,js}'",
"release": "git push --follow-tags && now --prod"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.0",
"next-seo": "^4.4.0",
"now": "^18.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hotjar": "^2.2.0"
},
"devDependencies": {
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"imagemin-svgo": "^7.1.0",
"lint-staged": "^10.1.2",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.5.7",
"prettier": "^2.0.4",
"svg-sprite-loader": "^4.1.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint:prepush"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --config .eslintrc.precommit.js"
]
}
}