generated from willin/remix-cloudflare-pages-demo
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "sso.willin.wang",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"watch": "turbo run watch --parallel",
"test": "turbo run test --parallel",
"coverage": "turbo run test --parallel -- --coverage",
"changeset:version": "changeset version",
"changeset:release": "changeset publish",
"lint": "turbo run lint --parallel",
"format": "prettier --write .",
"prepare": "husky install"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@cloudflare/workers-types": "^4.20231218.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@hono/eslint-config": "^0.0.3",
"@svelte-dev/eslint-config": "^1.0.0",
"bun-types": "^1.0.20",
"eslint": "^8.54.0",
"hono": "^3.11.10",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"wrangler": "^3.22.1"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"author": "Willin Wang <[email protected]> (https://willin.wang/)",
"license": "Apache-2.0",
"lint-staged": {
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx|vue)": [
"prettier --write"
],
"*.+(js|jsx|ts|tsx|vue)": [
"eslint --fix"
]
}
}