-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "osomware",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"check-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"framer-motion": "4.1.17",
"next": "^12.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-perfect-scrollbar": "^1.5.8",
"react-stickynode": "^4.1.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.0",
"@types/node": "^20.11.20",
"@types/react": "^18.0.1",
"@types/react-stickynode": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^11.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^4.9.5"
}
}