-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,md,mdx,css,scss}\"",
"lint": "eslint \"./**/*.{ts,tsx,js,jsx}\" --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx,css,scss}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@now/node": "^1.3.5",
"@sentry/browser": "^5.6.3",
"@sentry/integrations": "^5.6.1",
"@sentry/node": "^5.6.2",
"@types/classnames": "^2.2.9",
"@types/cookie": "^0.3.3",
"@types/node": "^12.7.10",
"@types/react": "^16.9.4",
"@types/url-join": "^4.0.0",
"@zeit/next-source-maps": "^0.0.3",
"ajv": "^6.10.2",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"classnames": "^2.2.6",
"cookie": "^0.4.0",
"cross-fetch": "^3.0.4",
"cssnano": "^4.1.10",
"dayjs": "^1.8.16",
"eslint": "^6.5.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"faunadb": "^2.8.1",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"next": "^9.3.2",
"next-svgr": "^0.0.2",
"prettier": "^1.18.2",
"query-string": "^6.11.1",
"react": "16.10.1",
"react-dom": "16.10.1",
"tailwindcss": "^1.1.4",
"typescript": "^3.5.3",
"url-join": "^4.0.1",
"webfontloader": "^1.6.28"
}
}