-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
98 lines (98 loc) · 2.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "islandjs-monorepo",
"private": true,
"version": "0.7.31",
"description": "Vite & Islands architecture SSG framework",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/node/index.cjs",
"module": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"bin": {
"island": "./bin/island.js"
},
"scripts": {
"pnpm-install": "pnpm install",
"lint": "eslint --ext .ts,.tsx,.js,.jsx --cache ./",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx --quiet --cache ./",
"test": "pnpm unit:test && pnpm e2e:test",
"unit:test": "vitest run",
"e2e:test": "playwright test",
"e2e:prepare": "tsx ./packages/island/scripts/prepare-e2e.cts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky install",
"dev:docs": "island dev docs",
"build:docs": "island build docs && cp -r ./docs/.island/index.html ./docs/.island/dist",
"start:docs": "island start docs",
"build": "turbo run build",
"dev": "turbo run dev",
"release": "node scripts/release.cjs"
},
"keywords": [
"vite",
"ssg",
"island architecture",
"docs",
"framework"
],
"author": "Sanyuan0704",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@islandjs/plugin-check-links": "workspace:*",
"@islandjs/create-island": "workspace:*",
"@playwright/test": "^1.26.1",
"@types/babel__core": "^7.1.19",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/babel__traverse": "^7.18.1",
"@types/body-scroll-lock": "^3.1.0",
"@types/compression": "^1.7.2",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/github-slugger": "^1.3.0",
"@types/hast": "^2.3.4",
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.7",
"@types/polka": "^0.5.4",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chalk": "4",
"commitlint": "^17.1.2",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"enquirer": "^2.3.6",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "5",
"globby": "^13.1.2",
"husky": "^8.0.1",
"islandjs": "workspace:*",
"lint-staged": "^13.0.3",
"minimist": "^1.2.7",
"pnpm": "7.9.2",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"semver": "^7.3.8",
"serve": "^14.0.1",
"tsup": "^6.2.3",
"tsx": "^3.8.2",
"turbo": "^1.6.2",
"typescript": "^4.7.4",
"vitest": "^0.23.1"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,json}": [
"eslint --fix"
]
}
}