-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
68
69
70
{
"name": "your-node-v20-menoreopo-project",
"private": true,
"minecat": {
"type": "Node.js"
},
"engines": {
"node": "^20.0.0"
},
"scripts": {
"build": "nx run-many -t build",
"build:fast": "nx run-many -t build:fast",
"dev": "npm run build && nx run-many -t dev",
"test": "nx run-many -t test",
"test:watch": "nx run-many -t test:watch",
"coverage": "nx run-many -t coverage",
"size": "size-limit",
"prepare": "husky install",
"prettier": "prettier",
"lint": "eslint ./packages/*",
"lint:fix": "eslint ./packages/* --fix",
"type-check": "tsc --noEmit",
"project-graph": "nx graph",
"changeset": "npm run build && npx changeset",
"ci:version": "changeset version",
"ci:publish": "changeset publish",
"example": "npm run build && pnpm -F example dev"
},
"description": "PNPM monorepo template",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/node": "^18.17.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commitlint": "^17.7.1",
"concurrently": "^8.2.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"nx": "16.3.2",
"prettier": "^2.8.8",
"size-limit": "^8.2.6",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"packageManager": "[email protected]",
"size-limit": [
{
"path": "./lib/dist/index.js",
"limit": "15 kb"
},
{
"path": "./lib/dist/index.mjs",
"limit": "15 kb"
}
],
"dependencies": {
"@changesets/cli": "^2.26.2",
"eslint-plugin-react": "^7.33.2"
}
}