-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 928 Bytes
/
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
{
"name": "root",
"version": "1.0.0",
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:web": "npm run dev -w apps/web",
"dev:figma-widget": "npm run dev -w apps/main",
"dev:assets": "npm run dev -w packages/assets",
"build": "npm run build:assets && npm run build:web && npm run build:main",
"build:assets": "npm run build -w packages/assets",
"build:main": "npm run build -w apps/main",
"build:web": "npm run build -w apps/web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chuanqisun/figma-rpg-mode.git"
},
"keywords": [],
"author": "https://github.com/chuanqisun",
"license": "MIT",
"bugs": {
"url": "https://github.com/chuanqisun/figma-rpg-mode/issues"
},
"homepage": "https://github.com/chuanqisun/figma-rpg-mode#readme",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"concurrently": "^7.3.0"
}
}