-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1010 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1010 Bytes
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
{
"name": "distopia",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "tsx scripts/seed.ts",
"run:linux": "bash scripts/run-linux.sh",
"prod:linux": "bash scripts/prod-linux.sh",
"install:pnpm": "pnpm install --frozen-lockfile=false",
"run:yarn": "bash scripts/run-linux-yarn.sh",
"prod:yarn": "bash scripts/prod-linux-yarn.sh",
"test:static": "node scripts/static-check.mjs",
"dev:linux": "bash scripts/dev-linux.sh",
"dev:yarn": "bash scripts/dev-linux-yarn.sh"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest",
"tsx": "latest",
"typescript": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"eslint": "latest",
"eslint-config-next": "latest"
},
"packageManager": "pnpm@10.12.1"
}