-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
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
{
"name": "database-table",
"version": "0.1.0",
"description": "Database tables for FigJam",
"main": "dist/code.js",
"scripts": {
"build": "tsc -p tsconfig.json && rollup -c",
"watch-tsc": "tsc -p tsconfig.json --watch",
"watch-js": "rollup -c --watch",
"watch-ui-edit": "parcel watch ui-src/edit --no-autoinstall --dist-dir dist",
"watch-ui-raw": "parcel watch ui-src/raw --no-autoinstall --dist-dir dist",
"watch-ui-index": "parcel watch ui-src/index --no-autoinstall --dist-dir dist",
"watch": "concurrently npm:watch-*"
},
"author": "PillFall",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@figma/plugin-typings": "*",
"@figma/widget-typings": "*",
"@parcel/optimizer-data-url": "*",
"@parcel/transformer-inline-string": "*",
"@parcel/transformer-sass": "*",
"@parcel/transformer-vue": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"concurrently": "*",
"eslint": "*",
"eslint-plugin-vue": "*",
"parcel": "*",
"pug": "*",
"rollup": "*",
"sass": "*",
"typescript": "*"
},
"dependencies": {
"vue": "3"
}
}