generated from ditsmod/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"private": true,
"type": "module",
"name": "monorepo-starter",
"version": "1.0.0",
"description": "Starter for monorepositories",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npm run build && node --env-file=packages/server/.env --enable-source-maps node_modules/.bin/vitest",
"start:dev": "concurrently -r 'npm:watch' 'npm:start'",
"watch": "npm run build -- --watch",
"start": "npm run build && node --watch --env-file=packages/server/.env --enable-source-maps packages/server/dist/main.js",
"start-prod": "npm run build && node --env-file=packages/server/.env packages/server/dist/main.js",
"build": "tsc -b packages",
"build-test": "tsc -b packages",
"clean": "rimraf packages/*/dist*",
"lint": "eslint .",
"postinstall": "npm run clean"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "~18.11.19",
"bunyan": "^1.8.15",
"concurrently": "^9.1.1",
"eslint": "^8.57.1",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"typescript": "^4.9.5",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">= 20.6.0"
}
}