-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "mailto",
"version": "1.0.0",
"description": "Build html mailto's",
"repository": "https://github.com/dawsbot",
"author": "@dawsbot",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "next build",
"now-build": "next build",
"dev": "next",
"start": "next start",
"test": "lint-staged && eslint .",
"prepare": "husky || true"
},
"dependencies": {
"copy-to-clipboard": "^3.3.3",
"email-seems-valid": "^0.0.12",
"next": "^14.2.3",
"preact": "^10.22.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1",
"react-github-corner": "^2.5.0",
"react-icons": "^5.2.1",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
}
}