-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ttu-poster",
"version": "v1.0.0-canary.1",
"private": true,
"scripts": {
"start": "NODE_ENV='development' next-remote-watch ./data",
"dev": "NODE_ENV='development' next dev",
"build": "NODE_ENV='production' next build",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir components",
"prepare": "husky install"
},
"dependencies": {
"fontfaceobserver": "^2.1.0",
"image-size": "1.0.0",
"motion": "^10.2.1",
"next": "^12.0.0",
"next-auth": "4.0.0-beta.2",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.3.1",
"next-svgr": "^0.0.2",
"next-themes": "0.0.15",
"nextjs-progressbar": "^0.0.11",
"preact": "^10.5.13",
"qrcode.react": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-useanimations": "^2.0.8",
"sass": "^1.49.0",
"sharp": "^0.29.1",
"smoothscroll-polyfill": "^0.4.4",
"tailwindcss": "^3.0.16",
"use-delayed-render": "^0.0.7"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.8",
"@next/codemod": "^12.0.8",
"@next/eslint-plugin-next": "^12.0.8",
"@types/fontfaceobserver": "^2.1.0",
"@types/react": "^17.0.14",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/tailwindcss": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"autoprefixer": "^10.4.2",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"dedent": "^0.7.0",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"file-loader": "^6.0.0",
"globby": "^12.0.2",
"husky": "^6.0.0",
"incstr": "^1.2.3",
"lint-staged": "^11.0.0",
"mangle-css-class-webpack-plugin": "^4.0.12",
"next-remote-watch": "^1.0.0",
"postcss": "^8.3.11",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.4.1",
"reading-time": "^1.5.0",
"rss": "1.2.2",
"smartquotes": "^2.3.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"postcss": "^8.3.11"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(css|sass|scss)": [
"stylelint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|scss|sass|md|mdx)": [
"prettier --write"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}