-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.51 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
{
"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": {
"@near-pagoda/ui": "^1.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"gleap": "^13.7.6",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rudder-sdk-js": "^2.48.6",
"sass": "^1.77.8",
"zustand": "^4.5.2"
},
"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",
"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",
"prettier": "^3.2.5",
"typescript": "^5"
},
"license": "ISC",
"engines": {
"node": ">=20",
"pnpm": "9.12.3"
},
"packageManager": "pnpm@9.12.3"
}