-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "ui-neglect",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings=0 \"src/**/*.{ts,tsx}\" --fix",
"prettier": "prettier check \"**/*{js,jsx,json,ts,tsx,yaml}\"",
"prettier-fix": "prettier --write \"**/*{js,jsx,json,ts,tsx,yaml}\"",
"format": "npm run lint && npm run prettier-fix"
},
"dependencies": {
"framer-motion": "^12.0.1",
"gsap": "^3.12.7",
"lodash": "^4.17.21",
"next": "15.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.14",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/lodash": "^4.17.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"eslint-config-next": "15.1.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.4.2",
"typescript": "^5"
}
}