-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "tailwindcss-snippets",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"plugin:prettier/recommended"
]
},
"prettier": {
"printWidth": 120,
"tabwidth": 2,
"useTabs": false,
"semi": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowparens": "avoid"
},
"dependencies": {
"@radix-ui/react-context-menu": "^0.1.4",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-tooltip": "^0.1.6",
"fathom-client": "^3.2.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hotkeys-hook": "^3.4.4",
"tailwindcss-radix": "^1.6.0"
},
"devDependencies": {
"@types/node": "17.0.6",
"@types/react": "17.0.38",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.1",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.8",
"typescript": "4.5.4"
}
}