-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 719 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 719 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
{
"name": "file-system-api-markdown-editor",
"version": "1.0.0",
"repository": "https://github.com/DaveBitter/file-system-api-markdown-editor.git",
"author": "Dave Bitter <dbitter@anwb.nl>",
"license": "MIT",
"scripts": {
"build": "parcel build src/index.html && yarn copy:public",
"dev": "parcel src/index.html",
"copy:public": "cp -r ./public/* dist"
},
"staticFiles": {
"staticPath": [
"public"
]
},
"dependencies": {
"@toast-ui/editor": "^3.2.1",
"toastr": "^2.1.4"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.8.2",
"@parcel/transformer-webmanifest": "2.8.2",
"parcel": "^2.7.0",
"parcel-plugin-static-files-copy": "^2.6.0"
}
}