forked from manifoldmarkets/manifold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.4 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
{
"name": "manifold-politics",
"version": "0.0.0",
"private": true,
"scripts": {
"serve": "next dev -p 3000",
"ts-watch": "tsc --watch --noEmit --incremental --preserveWatchOutput --pretty",
"dev": "concurrently -n NEXT,TS -c magenta,cyan \"yarn serve\" \"yarn ts-watch\"",
"dev:dev": "cross-env NEXT_PUBLIC_FIREBASE_ENV=DEV yarn dev",
"dev:prod": "cross-env NEXT_PUBLIC_FIREBASE_ENV=PROD yarn dev",
"dev:local": "cross-env NEXT_PUBLIC_FUNCTIONS_URL=http://localhost:8080 yarn devdev",
"dev:emulate": "cross-env NEXT_PUBLIC_FIREBASE_EMULATE=TRUE yarn devdev",
"devdev": "yarn dev:dev",
"prod": "yarn dev:prod",
"disk-space-info": "du -hs ./node_modules && du -hs ./.next && du -hs ./.next/cache",
"clear-nextjs-cache": "rm -rf ./.next/cache",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"format": "npx prettier --write .",
"format-changed": "cd .. && git diff $(git merge-base --fork-point main) --name-only --diff-filter=d | xargs npx prettier -w",
"verify": "(cd .. && yarn verify)",
"verify:dir": "npx prettier --check .; yarn lint --max-warnings 0; tsc --pretty --project tsconfig.json --noEmit"
},
"dependencies": {
"server-only": "0.0.1"
},
"devDependencies": {
"autoprefixer": "10.2.6"
},
"lint-staged": {
"*.{ts,tsx}": "tsc-files --noEmit --incremental false"
}
}