This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nerve.app.next",
"version": "4.4.4",
"private": false,
"license": "GNU",
"description": "A next-gen web application for the Nerve Theatre in Chicago",
"author": "Chris Hahn <chris@chrishahn.me>",
"repository": "https://github.com/the-nerve/nerve.web.next",
"keywords": [
"the nerve",
"nerve theatre",
"typescript",
"nextjs",
"monorepo",
"web app",
"turborepo",
"next",
"vercel",
"pnpm",
"tailwind"
],
"scripts": {
"dev": "turbo run dev --filter=@nerve/cms --filter=@nerve/web --parallel --color",
"cms:dev": "turbo run dev --filter=@nerve/cms",
"cms:build": "turbo run build --filter=@nerve/cms",
"check:format": "prettier --check '**/*.{js,ts,tsx,json,md,yaml,yml}'",
"check:lint": "turbo run check:lint --color",
"check:types": "turbo run check:types --color",
"clean:modules": "find . -name node_modules -type d -exec rm -rf {} +",
"clean:reset": "pnpm clean:modules; pnpm install",
"email:dev": "turbo run dev --filter=@nerve/email",
"fix:format": "prettier --write '**/*.{js,ts,tsx,json,md,yaml,yml}'",
"in:eslint": "pnpm --filter eslint-config-nerve",
"in:cms": "pnpm --filter @nerve/cms",
"in:email": "pnpm --filter @nerve/email",
"in:icons": "pnpm --filter @nerve/icons",
"in:kit": "pnpm --filter @nerve/kit",
"in:tailwind": "pnpm --filter @nerve/tailwind",
"in:tokens": "pnpm --filter @nerve/tokens",
"in:ui": "pnpm --filter @nerve/ui",
"in:web": "pnpm --filter @nerve/web",
"pre-commit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test": "turbo run test --color",
"ui:build": "turbo run build --filter=@nerve/ui",
"web:dev": "turbo run dev --filter=@nerve/web",
"web:build": "turbo run build --filter=@nerve/web"
},
"dependencies": {
"turbo": "^1.10.7"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.0",
"typescript": "5.4.5"
},
"engines": {
"node": ">=18.5.0",
"pnpm": ">=8.5.0",
"yarn": "must use pnpm",
"npm": "must use pnpm"
},
"packageManager": "pnpm@8.5.1"
}