-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.63 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
46
47
{
"name": "v-playground",
"version": "0.4.0",
"description": "Source code for V Playground website and backend",
"scripts": {
"install-server-deps": "cd server && v install",
"build-ts": "cd ./www && npm ci && npm run build",
"watch-ts": "cd ./www && npm ci && npm run watch",
"sass": "cd ./www && sass styles/index.scss:styles/index.css",
"sass-watch": "cd ./www && sass --watch styles/index.scss:styles/index.css",
"mkdir-bin": "mkdir -p ./server/bin",
"build": "npm run sass && npm run build-ts && npm run mkdir-bin && v server -o ./server/bin/server",
"build-prod": "npm run sass && npm run build-ts && npm run mkdir-bin && v server -prod -o ./server/bin/server",
"local-build": "npm run sass && npm run build-ts && npm run mkdir-bin && v -g -d local -d uselibbacktrace -o ./server/bin/server ./server",
"serve": "npm run build && ./server/bin/server",
"local-serve": "npm run local-build && ./server/bin/server",
"run-docker": "docker-compose up -d",
"clean": "rm -rf ./server/bin"
},
"author": {
"name": "The V language contributors",
"url": "https://vlang.io/"
},
"contributors": [
"Petr Makhnev",
"shadowninja55",
"Mark @walkingdevel",
"Delyan Angelov @spytheman",
"Alexander Medvednikov",
"Carlos Silva",
"Carlos Esquerdo Bernat",
"RGBCube",
"Ulises Jeremias Cornejo Fandos",
"Enzo Baldisserri",
"JalonSolov",
"Raúl Hernández",
"shove"
],
"bugs": {
"url": "https://github.com/vlang/playground/issues"
},
"homepage": "https://play.vlang.io/",
"devDependencies": {
"esbuild": "0.19.11",
"sass": "1.69.6"
}
}