-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1006 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@dynamored/bragi",
"version": "beta-1.0.0",
"description": "URL Shortener by DynamoRed | https://dynamored.com",
"engines": {
"node": ">16.10"
},
"scripts": {
"start": "npm run start:dev",
"start:dev": "nuxt dev --port=3996",
"start:prod": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"production": "npm run start:prod; ./start.sh",
"test": "testyts"
},
"repository": {
"type": "git",
"url": "https://github.com/DynamoRed/bragi.git"
},
"keywords": [
"bragi",
"dynamored",
"url",
"shortener"
],
"author": "DynamoRed",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^18.11.13",
"@types/uuid": "^9.0.0",
"nuxt": "3.0.0",
"sass": "^1.56.2",
"sass-loader": "^10.4.1",
"testyts": "^1.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"js-sha512": "^0.8.0",
"numeral": "^2.0.6",
"url": "^0.11.0",
"uuid": "^9.0.0"
}
}