-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "alejandro-tardin-site",
"version": "0.0.1",
"private": true,
"author": "Alejandro Tardín <[email protected]>",
"homepage": "https://alex.creepyface.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/4lejandrito/me.git"
},
"scripts": {
"build": "next build && next export",
"dev": "next dev",
"prepare": "husky install"
},
"dependencies": {
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"creepyface": "^8.1.3",
"creepyface-dance": "^8.1.3",
"lodash": "^4.17.21",
"next": "12.1.6",
"next-plausible": "^3.2.0",
"next-seo": "^5.4.0",
"postcss": "^8.4.14",
"react": "18.1.0",
"react-creepyface": "^8.1.3",
"react-dom": "18.1.0",
"react-transition-group": "^4.4.2",
"tailwindcss": "^3.0.24",
"unstated-next": "^1.1.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.40",
"@types/react": "^18.0.12",
"@types/react-transition-group": "^4.4.4",
"husky": "^8.0.1",
"lint-staged": ">=13.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,html,css,scss,webmanifest}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}