-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
37 lines (37 loc) · 970 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
33
34
35
36
37
{
"author": "Francisco Jesus Navarro Cortes<[email protected]>",
"repository": {
"url": "https://github.com/spielrs/yew-parcel-template"
},
"name": "create-yew-parcel",
"version": "0.18.1",
"license": "MIT",
"scripts": {
"start": "node wasm-builder.js",
"build": "cross-env NODE_ENV=production node wasm-builder.js",
"debug": "cross-env NODE_ENV=dev node --nolazy --inspect-brk=9229 wasm-builder.js"
},
"bin": {
"create-yew-parcel": ".bin/create-yew-parcel.js"
},
"devDependencies": {
"brotli": "^1.3.2",
"chokidar": "^3.4.2",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"sass": "^1.37.0",
"typescript": "^3.9.7",
"yew-styles": "^0.10.0"
},
"staticFiles": {
"staticPath": [
"./crate/pkg",
"./crate/assets"
],
"watcherGlob": false
}
}