-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
46 lines (46 loc) · 1.06 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
{
"private": true,
"scripts": {
"bundle": "ts-node ./scripts/bundle.ts",
"build": "npx turbo run build",
"start": "npx turbo run start",
"lint": "npx turbo run lint",
"test": "npx turbo run test",
"test:watch": "npx turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "changeset publish",
"changeset": "changeset"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/glob": "^8.1.0",
"eslint": "^8.48.0",
"glob": "^10.3.10",
"prettier": "^3.0.3",
"ts-node": "^10.8.1",
"turbo": "latest"
},
"name": "tokens-studio-plugin-monorepo",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/@figma/plugin-typings",
"**/plugin-typings",
"**/types",
"**/jest"
]
},
"resolutions": {
"react": "^18",
"@radix-ui/react-dismissable-layer": "1.0.5"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"fs-extra": "^11.1.1",
"jszip": "^3.10.1"
}
}