-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.38 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "portofolio",
"version": "1.1.0",
"description": "My portofolio",
"main": "index.js",
"repository": "https://github.com/pauldb09/portofolio.git",
"bugs": "https://github.com/pauldb09/portofolio",
"author": {
"name": "Pauldb09",
"email": "[email protected]",
"url": "https://pauldb09.dev"
},
"homepage": "https://pauldb09.dev",
"license": "MIT",
"private": true,
"contributors": [],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"deploy": "next build && pm2 start npm --name pauldb09.dev -- run start",
"refresh": "next build && pm2 restart pauldb09.dev",
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^1.7.11",
"@heroicons/react": "^2.0.16",
"@heroicons/vue": "^2.0.16",
"@prisma/client": "^3.15.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"chart.js": "^4.2.1",
"next": "^13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/react": "^17.0.52",
"autoprefixer": "^10.4.13",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"prisma": "^3.15.2",
"tailwindcss": "^3.2.3",
"typescript": "^4.8.4"
},
"prettier": {
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"bracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 200,
"semi": true,
"tabWidth": 4
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"eslint:recommended",
"next/core-web-vitals",
"prettier"
],
"rules": {
"no-case-declarations": "off",
"no-empty-function": "off",
"prefer-const": "off",
"prettier/prettier": "error",
"@next/next/no-img-element": "off",
"react/no-unescaped-entities": "off"
},
"globals": {
"JSX": true
}
}
}