-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "dustbin",
"version": "1.0.1",
"description": "Yet Another Text Storage Service.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build && tailwindcss build -i ./pages/tailwind.input.css -o ./pages/tailwind.css",
"start": "node build",
"dev": "tsc --build && node build",
"watch:css": "tailwindcss -i ./pages/tailwind.input.css -o ./pages/tailwind.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DustbinServer/Dustbin.git"
},
"author": "Team Dustbin <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/DustbinServer/Dustbin/issues"
},
"homepage": "https://github.com/DustbinServer/Dustbin#readme",
"devDependencies": {
"@types/node": "^17.0.10",
"@types/pg": "^8.6.4",
"@types/uniqid": "^5.3.2",
"eslint": "^8.7.0",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"dotenv": "^16.0.0",
"dropbox": "^10.23.0",
"fastify": "^3.27.0",
"pg": "^8.7.1",
"tailwindcss": "^3.0.15",
"uniqid": "^5.4.0"
}
}