-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
51 lines (51 loc) · 1.99 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
{
"name": "@dzcode.io/data",
"description": "data.dzcode.io code",
"version": "6.1.0",
"author": {
"email": "[email protected]",
"name": "Zakaria Mansouri",
"url": "https://www.zakiii.com"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^11.0.0"
},
"devDependencies": {
"@dzcode.io/tooling": "*",
"@dzcode.io/utils": "*",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0"
},
"license": "MIT",
"lint-staged": {
"*.*": [
"npm run lint:eslint --fix",
"npm run lint:prettier -- --write"
]
},
"private": true,
"repository": {
"type": "git",
"repository": "https://github.com/dzcode-io/dzcode.io.git"
},
"scripts": {
"build": "lerna run build:alone [email protected]/data --include-dependencies --stream",
"build:alone": "tsc",
"build:alone:watch": "tsc --watch --preserveWatchOutput",
"build:watch": "lerna run build:alone:watch [email protected]/data --include-dependencies --parallel",
"clean": "lerna run clean:alone [email protected]/api --include-dependencies --stream",
"clean:alone": "del dist coverage",
"lint": "npm run build && npm run lint:alone",
"lint:alone": "npm run lint:eslint . && npm run lint:prettier -- --check . && npm run lint:tsc && npm run lint:ts-prune",
"lint:eslint": "eslint --config ../packages/tooling/eslint.config.mjs",
"lint:fix": "npm run build && npm run lint:fix:alone",
"lint:fix:alone": "npm run lint:eslint --fix . && npm run lint:prettier -- --write .",
"lint:prettier": "prettier --config ../packages/tooling/.prettierrc --ignore-path ../packages/tooling/.prettierignore --log-level warn",
"lint:ts-prune": "tsx ../packages/tooling/setup-ts-prune.ts && ts-prune --error",
"lint:tsc": "tsc --noEmit",
"test": "npm run build && npm run test:alone",
"test:alone": "jest --config ../packages/tooling/jest.config.ts --rootDir .",
"test:watch": "npm-run-all build --parallel build:watch \"test:alone --watch {@}\" --"
}
}