-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "ssnipp",
"version": "1.2.0",
"description": "Minimalist and private code snippet sharer",
"author": "Benito Lopez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benitolopez/ssnipp"
},
"private": true,
"scripts": {
"watch:go": "nodemon -e go,sql,html --exec 'go run ./cmd/web' --signal SIGTERM",
"watch:css": "tailwindcss -i ./src/css/tailwind.css -o ./ui/static/css/main.css --watch",
"build": "tailwindcss -i ./src/css/tailwind.css -o ./ui/static/css/main.css --minify",
"dev": "concurrently npm:watch:* --kill-others"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"tailwindcss": "^3.4.9"
}
}