-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 KB
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
{
"name": "zemus-api",
"version": "1.0.0",
"description": "A RESTful web API built for interfacing with the Zemus cross-platform mobile application. The environment consists of TypeScript, node.js (runtime), Hapi (HTTP library), and Knex (SQL query builder). The product has two main aspects: a social media platform, and a tool to search for news from the entire world. ",
"main": "build/server.js",
"scripts": {
"dev": "nodemon server/server.ts",
"prod": "tsc --project tsconfig.production.json & pm2 start build/server.js",
"build-prod": "tsc --project tsconfig.production.json",
"prod-js": "pm2 start build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/TheoSoko/zemus-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/TheoSoko/zemus-api/issues"
},
"homepage": "https://gitlab.com/TheoSoko/zemus-api#readme",
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.15",
"dotenv": "^16.3.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"validator": "^13.9.0"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.2.1",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"@types/boom": "^7.3.2",
"@types/hapi": "^18.0.8",
"argon2": "^0.30.3",
"axios": "^1.4.0",
"gec": "^1.0.3",
"jimp": "^0.22.7",
"jsdom": "^22.0.0",
"knex": "^2.4.2",
"mysql": "^2.18.1",
"pm2": "^5.3.0"
}
}