-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"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",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}