-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"author": "Francisco Jesus Navarro Cortes<spieljs@gmail.com>",
"repository": {
"url": "https://github.com/spielrs/yew-parcel-template"
},
"name": "create-yew-parcel",
"version": "0.17.2",
"license": "MIT",
"scripts": {
"start": "node wasm-builder.js",
"build": "NODE_ENV=production node wasm-builder.js",
"debug": "NODE_ENV=dev node --nolazy --inspect-brk=9229 wasm-builder.js"
},
"bin": {
"create-yew-parcel": ".bin/create-yew-parcel.js"
},
"devDependencies": {
"chokidar": "^3.4.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"node-forge": ">=0.10.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"prismjs": "^1.25.0",
"sass": "^1.37.0",
"typescript": "^3.8.3"
},
"dependencies": {
"prismjs": "^1.25.0"
},
"staticFiles": {
"staticPath": [
"./crate/pkg",
"./crate/assets",
"./error-pages"
],
"watcherGlob": false
}
}