-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "jdc-dev-site",
"version": "4.0.2",
"private": false,
"description": "Personal site for Jacob D. Castro, a full-stack JavaScript/TypeScript Web3 developer.",
"author": {
"name": "Jacob D. Castro",
"email": "[email protected]",
"url": "https://jdc.dev"
},
"keywords": [
"nextjs",
"blog",
"typescript",
"web3"
],
"scripts": {
"dev": "next dev -p 1414",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,json,md}\" \"!node_modules/**\" \"!public/**\"",
"test": "jest --watchAll"
},
"dependencies": {
"@tailwindcss/ui": "^0.7.2",
"next": "^12.0.1",
"next-themes": "^0.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/node": "18.7.23",
"@types/react": "^17.0.33",
"@types/styled-components": "^5.1.20",
"autoprefixer": "^10.4.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.24.0",
"postcss": "^8.3.11",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4"
},
"resolutions": {
"styled-components": "^5",
"**/@types/react": "^17.0.21",
"**/@types/react-dom": "^17.0.9"
}
}