-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "app-migration",
"description": "A temporary landing page for the migration of V1 to V2.",
"version": "1.0.0",
"author": "Jackson <[email protected]>",
"bugs": {
"url": "https://github.com/cosmoau/app-migration/issues"
},
"dependencies": {
"@cosmoau/ui": "^1.9.31",
"@phosphor-icons/react": "2.1.5",
"@vercel/analytics": "^1.3.1",
"next": "^14.2.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4"
},
"devDependencies": {
"@next/env": "^14.2.6",
"@types/node": "^20.16.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-dolmios": "^1.11.0",
"prettier": "^3.3.3"
},
"eslintConfig": {
"extends": [
"dolmios"
]
},
"homepage": "https://github.com/cosmoau/app-migration#readme",
"license": "UNLICENSED",
"prettier": "eslint-config-dolmios/configs/prettier",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cosmoau/app-migration.git"
},
"scripts": {
"build": "next build",
"bump": "pnpm up -r && pnpm tidy && pnpm build",
"dev": "pnpm open && pnpm ip && next dev --port 420",
"ip": "ipconfig getifaddr en0 && echo && echo",
"lint": "eslint . --ext js,jsx,ts,tsx,ts --fix ",
"open": "open http://localhost:420",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,json}' '!node_modules/**' '!.git/**' '!.next/**'",
"tidy": "pnpm lint && pnpm prettier",
"kill": "lsof -ti tcp:420 | xargs kill"
}
}