-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "mern-monorepo-starter",
"version": "0.0.1",
"description": "mern-monorepo-starter description",
"author": "Bruno Tot",
"license": "MIT",
"main": "index.js",
"type": "module",
"private": true,
"workspaces": [
"packages/**/*"
],
"engines": {
"pnpm": ">=8.15.7"
},
"keywords": [
"monorepo",
"starter",
"template",
"mern",
"railway",
"react",
"mongodb",
"express",
"node"
],
"scripts": {
"test": "pnpm -r test",
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"writeTypedoc": "nx build && bash assets/sh/typedoc.sh",
"renameProjectLabels": "node renameProjectLabels.js"
},
"devDependencies": {
"@nx/eslint": "20.1.2",
"@nx/jest": "20.1.2",
"@nx/vite": "20.1.2",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.5",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"nx": "20.1.2",
"prettier": "^3.4.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.11",
"typedoc-github-theme": "^0.1.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
}
}