This repository was archived by the owner on Jul 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 KB
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
{
"name": "@milliejs/monorepo",
"private": true,
"author": "Scott BonAmi",
"scripts": {
"build": "yarn workspaces foreach --all --parallel --verbose run build",
"clean": "yarn clean:dist && yarn clean:test",
"clean:dist": "rimraf -- ./packages/*/dist ./packages/*/tsconfig.tsbuildinfo",
"clean:test": "rimraf -- ./coverage",
"format:script": "prettier --ignore-path .prettierignore .",
"format": "yarn format:script --write",
"format:ci": "yarn format:script --check",
"lint": "yarn lint:code && yarn lint:commit",
"lint:code": "eslint --ignore-path .gitignore .",
"lint:commit": "commitlint",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest --config=jest.config.unit.js",
"test:integration": "jest --config=jest.config.integration.js",
"pkg:version": "lerna version",
"pkg:publish": "lerna publish"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
},
"packageManager": "yarn@4.0.1",
"workspaces": [
"examples/*",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/types": "^18.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^3.0.1",
"jest": "^29.6.2",
"lerna": "^8.0.0",
"nx": "^17.0.1",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependenciesMeta": {
"prettier@3.0.3": {
"unplugged": true
}
}
}