-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "solun-api",
"version": "1.2.21",
"description": "Exists only to handle any requests from the Solun applications.",
"main": "index.js",
"scripts": {
"test": "echo 'skip test'",
"build": "tsc && npm run copy-env",
"live": "tsc",
"start": "node dist/server.js",
"copy-env": "cp .env.local dist/.env.local",
"version": "git add .",
"postversion": "git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solun-pm/solun-api.git"
},
"author": "Daniel Wagner",
"license": "ISC",
"bugs": {
"url": "https://github.com/solun-pm/solun-api/issues"
},
"homepage": "https://github.com/solun-pm/solun-api#readme",
"dependencies": {
"@openpgp/web-stream-tools": "^0.0.13",
"@types/node": "^20.3.1",
"base32-decode": "^1.0.0",
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cross-fetch": "^3.1.6",
"dns": "^0.1.2",
"dotenv": "^16.3.1",
"encoding": "^0.1.13",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"mime": "^3.0.0",
"mongodb": "^5.6.0",
"mongoose": "^7.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.1",
"openpgp": "^5.9.0",
"otplib": "^12.0.1",
"path": "^0.12.7",
"solun-database-package": "^1.0.6",
"solun-general-package": "^1.0.19",
"solun-server-encryption-package": "^1.0.5",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mime": "^3.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7"
}
}