-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
42
43
44
45
{
"author": "Francisco Jesus Navarro Cortes<[email protected]>",
"repository": {
"url": "https://github.com/spielrs/yew-parcel-template"
},
"name": "create-yew-parcel",
"version": "0.16.0",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start:dev": "webpack-dev-server --mode development --history-api-fallback"
},
"bin": {
"create-yew-parcel": ".bin/create-yew-parcel.js"
},
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.1.0",
"chokidar": "^3.4.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"parcel-plugin-wasm.rs": "^1.2.16",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"yew-styles": "0.2.0"
},
"staticFiles": {
"staticPath": [
"./crate/pkg",
"./crate/assets"
],
"watcherGlob": false
}
}