-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 795 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 795 Bytes
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
{
"name": "zolplay-core",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset && changeset version",
"release": "pnpm run build && changeset version && changeset publish"
},
"devDependencies": {
"eslint": "^8.21.0",
"prettier": "latest",
"tsup": "^6.3.0",
"turbo": "latest",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@changesets/cli": "^2.25.0"
},
"packageManager": "pnpm@7.13.4"
}