-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "interaction-kit-workspace",
"workspaces": [
"apps/*",
"packages/*"
],
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"cli": "cross-env FORCE_COLOR=1 turbo run cli --filter=create-ikit-app",
"dev": "cross-env FORCE_COLOR=1 turbo run dev --no-cache --parallel --continue",
"bot": "cross-env FORCE_COLOR=1 turbo run bot --no-cache",
"clean": "cross-env FORCE_COLOR=1 turbo run clean",
"build": "cross-env FORCE_COLOR=1 turbo run build",
"typecheck": "cross-env FORCE_COLOR=1 turbo run typecheck",
"prettier": "cross-env FORCE_COLOR=1 turbo run prettier",
"lint": "cross-env FORCE_COLOR=1 turbo run lint",
"pretest": "npm run build",
"test": "vitest run",
"version": "npx changeset version",
"changeset": "npx changeset add",
"publish": "npm run build && npx changeset publish"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"volta": {
"node": "18.16.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@cloudflare/workers-types": "^3.14.1",
"@edge-runtime/types": "^2.0.8",
"@noble/ed25519": "^2.0.0",
"@types/debug": "^4.1.7",
"@types/node": "^18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.37.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.56.0",
"eslint-plugin-tsdoc": "^0.2.17",
"express": "^4.18.2",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"rimraf": "^4.4.1",
"tailwindcss": "^3.3.1",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"turbo": "^1.8.8",
"typescript": "^5.0.3",
"unbuild": "^1.2.0",
"undici": "^5.21.0",
"vite": "^4.2.1",
"vitest": "^0.31.1"
}
}