forked from dwarvesf/df-frontend-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (54 loc) · 1.25 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
{
"name": "assignment-4",
"version": "0.1.0",
"private": true,
"description": "DF 2023 Assignment 4",
"author": "Dwarves Foundation",
"repository": {
"type": "git",
"url": "git+https://github.com/dwarvesf/df-frontend-2023.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"next": "^13.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@dwarvesf/react-eslint-config": "^1.0.1",
"@next/eslint-plugin-next": "^13.5.3",
"@types/node": "^20.7.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
}
}