-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
{
"name": "webstone-plugins",
"version": "0.0.1",
"description": "Start your next web application with Webstone Plugins and configure it as you go.",
"private": true,
"engines": {
"node": ">=v20"
},
"scripts": {
"build": "pnpm --recursive --parallel build",
"changeset": "changeset && pnpm install",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "changeset publish",
"clean": "pnpm --recursive --parallel clean",
"clean:nodemodules": "find . -type d -name \"node_modules\" -exec rm -fr {} +",
"dev": "pnpm --recursive --parallel --filter !./packages/plugin-*/web --filter !./packages/plugin-*/packages/web dev",
"lint": "eslint . --fix --ignore-path .gitignore --max-warnings 0",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test": "pnpm test:unit",
"test:e2e": "pnpm playwright test",
"test:e2e:open": "pnpm playwright test --headed",
"test:unit": "c8 --all --include=**/src --reporter=html pnpm test:unit:only",
"test:unit:only": "NODE_OPTIONS='--loader tsx' uvu packages tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebstoneHQ/webstone.git"
},
"author": "Mike Nikles, @mikenikles",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebstoneHQ/webstone/issues"
},
"homepage": "https://github.com/WebstoneHQ/webstone#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts}": [
"pnpm lint"
],
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@playwright/test": "^1.37.0",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "20.4.10",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"c8": "^8.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"sinon": "^15.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"uvu": "^0.5.6"
}
}