-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "template-typescript-monorepo",
"version": "1.4.8",
"private": true,
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "nx run-many -t build --all",
"dev": "nx run-many -t dev --all",
"start": "nx run-many -t start -p remix-app",
"clean": "node scripts/clean.js --node_modules --dist --.nx",
"clean:dist": "node scripts/clean.js --dist --.nx",
"lint:check": "nx run-many -t lint:check --all",
"lint": "nx run-many -t lint --all",
"typecheck": "nx run-many -t typecheck --all",
"format": "nx run-many -t format --all",
"test": "nx run-many -t test --all",
"cloc": "npx cloc * --exclude-dir=node_modules,dist,.nx,.next,build",
"gcloud-setup": "gcloud auth application-default login && gcloud config set project bhouston-general-hosting && gcloud config set run/region us-central1",
"depcheck": "npx depcheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@nx/eslint": "^17.2.6",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"esbuild": "0.18.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"nx": "^17.2.6",
"prettier": "^2.8.8",
"typescript": ">=5.2.2"
},
"dependencies": {},
"engines": {
"node": ">=22.0.0"
}
}