-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·41 lines (41 loc) · 1.07 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
{
"name": "p2p-git-portal-poc",
"version": "1.0.0",
"description": "Proof of concept p2p git portal",
"license": "GPL-3.0-or-later",
"author": "happybeing",
"dependencies": {
"autoprefixer": "^9",
"install": "^0.13.0",
"postcss": "^7",
"svelte": "^3.29.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"devDependencies": {
"css-loader": "^2.1.0",
"golang-wasm-async-loader2": "1.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^1.3.3",
"postcss-nesting": "^7.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^4.6.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --content-base public",
"watchhack": "while true ; do inotifywait -qm --event modify --format '' src/*/*.go | touch src/main.go; done &"
},
"keywords": [
"p2p",
"git",
"gitportal",
"svelte",
"golang",
"wasm"
]
}