-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "web",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"homepage": "https://github.com/NUDelta/dtr-web",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev --turbo",
"build": "yarn lint:fix && NODE_NO_WARNINGS=1 next build",
"start": "NODE_NO_WARNINGS=1 next start -H 0.0.0.0 -p ${PORT:-8080}",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postinstall": "husky"
},
"dependencies": {
"@zl-asica/react": "^0.3.10",
"airtable": "^0.12.2",
"next": "^15.1.6",
"next-nprogress-bar": "^2.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"react-player": "^2.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@eslint-react/eslint-plugin": "^1.26.1",
"@tailwindcss/postcss": "^4.0.3",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.3",
"typescript": "^5.7.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}