-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
{
"name": "earthwormai-frontend",
"description": "ByteQuery Frontend",
"version": "1.0.0",
"private": true,
"author": "Abhishek Jadhav <abhishek.earthwormai@gmail.com>",
"license": "GPL-3.0-only",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --fix \"src/**/*.+(ts|js|jsx|tsx)\"",
"format": "prettier --write \"src/**/*.+(ts|js|jsx|tsx)\"",
"format:ci": "prettier --check \"src/**/*.+(ts|js|jsx|tsx)\"",
"prepare": "husky",
"postinstall": "next build"
},
"dependencies": {
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"clsx": "2.1.1",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.5.5"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "10.4.20",
"eslint": "^9",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-sort-json": "4.0.0",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.16",
"typescript": "^5"
},
"engines": {
"node": ">=20.18.1",
"npm": ">=10.8.2"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"npm run lint",
"npm run format"
]
}
}