forked from near/nearorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "container_nearorg",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:pre-commit": "next lint --max-warnings 0",
"prettier": "prettier --check 'src/**/*.{js,jsx,ts,tsx,json}'",
"prettier:write": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json}'",
"ts:check": "tsc --noEmit --incremental",
"pre-commit": "npm run lint:pre-commit && npm run prettier && npm run ts:check",
"sync-submodules": "git submodule init && git submodule update",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@vercel/analytics": "^1.3.2",
"date-fns": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.456.0",
"nanoid": "^5.0.7",
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rudder-sdk-js": "^2.48.6",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/node": "^20",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.11",
"postcss": "^8.4.47",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.14",
"typescript": "^5"
},
"license": "ISC"
}