-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.8 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
{
"name": "sqip-monorepo",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky && npm run prepare --workspaces --if-present",
"build": "npm run build:clean && npm run build -w sqip && npm run build --workspaces --if-present",
"build:watch": "npm run watch --workspaces --if-present",
"build:clean": "rm -rf packages/*/dist/* packages/*/tsconfig.tsbuildinfo integrations/*/dist/* integrations/*/tsconfig.tsbuildinfo",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:unit": "TERM=xterm vitest run 'unit' --coverage",
"test:unit:watch": "TERM=xterm vitest 'unit' --coverage",
"pretest:e2e": "npm run build",
"test:e2e": "TERM=xterm vitest run 'e2e'",
"test:e2e:watch": "TERM=xterm vitest 'e2e'",
"test:integration": "TERM=xterm vitest run --config vitest.integration.config.ts",
"lint": "eslint packages/*/src integrations/*/src",
"format": "prettier --write 'packages/*/src/**/*.ts' 'packages/*/__tests__/**/*.ts' 'integrations/*/src/**/*.ts' 'integrations/*/__tests__/**/*.ts' '**/*.md'",
"publish": "npm run build && lerna publish --conventional-commits",
"publish:beta": "npm run publish -- --dist-tag beta"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"cz-conventional-changelog": "3.3.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lerna": "^9.0.5",
"prettier": "^3.8.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"overrides": {
"gifwrap": "^0.10.1",
"sharp": "^0.34.5"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/*",
"integrations/*",
"demo-app"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}