-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 858 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 858 Bytes
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
{
"name": "keymap-dot-click",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "NODE_OPTIONS='--inspect' next dev",
"devlocalnet": "NODE_OPTIONS='--inspect' next dev --hostname 0.0.0.0",
"export": "npm run build && next export",
"lint": "eslint",
"lintall": "eslint .",
"start": "next start",
"next": "next"
},
"dependencies": {
"classnames": "^2.5.1",
"fathom-client": "^3.0.0",
"loglevel": "^1.7.0",
"next": "^14.1.2",
"postcss": "^8.4.35",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"autoprefixer": "^10.4.18",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"prettier": "2.1.1",
"tailwindcss": "^3.4.1"
}
}