forked from jycouet/kitql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "kitql",
"version": "0.0.1",
"author": "jycouet <jycouet@gmail.com>",
"private": true,
"license": "MIT",
"scripts": {
"ws": "workspace",
"prepare": "husky install && cd packages/all-in && yarn prepare",
"dev:t": "yarn build && yarn workspace @kitql/template dev",
"dev:w": "cd website && yarn dev",
"test": "vitest --coverage",
"lint": "eslint --ignore-path .prettierignore .",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"test:ci": "vitest run --coverage",
"test:update-badge": "yarn update-badge",
"prebuild": "rimraf packages/*/dist",
"build": "tsc --project tsconfig.json && bob build && rm -rf packages/client/dist/lib/graphql && yarn workspace @kitql/all-in package",
"release:version": "yarn changeset version",
"release": "yarn build && changeset publish",
"reset": "git clean -xdf",
"update": "npm exec --workspaces -- npx npm-check-updates -u -p yarn"
},
"workspaces": {
"packages": [
"packages/*",
"kit-modules/*",
"website"
]
},
"devDependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@changesets/changelog-github": "0.4.5",
"@changesets/cli": "2.23.0",
"@theguild/eslint-config": "0.0.1",
"@theguild/prettier-config": "0.0.1",
"@vitest/ui": "0.4.1",
"bob-the-bundler": "1.6.1",
"c8": "7.11.0",
"check-code-coverage": "1.10.0",
"husky": "8.0.1",
"jsdom": "19.0.0",
"prettier": "2.7.1",
"prettier-plugin-svelte": "2.7.0",
"rimraf": "3.0.2",
"svelte2tsx": "^0.5.12",
"typescript": "4.5.5",
"vitest": "0.4.1"
},
"volta": {
"node": "17.4.0",
"yarn": "1.22.17"
}
}