-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "glampy-api",
"version": "1.0.0",
"description": "Glampy REST API for technoscape hackathon",
"private": true,
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excalios/GlampyAPI.git"
},
"author": "M. Noor Ravi Deevan",
"license": "MIT",
"bugs": {
"url": "https://github.com/excalios/GlampyAPI/issues"
},
"homepage": "https://github.com/excalios/GlampyAPI#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.19",
"mime-types": "^2.1.31",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"objection": "^2.2.15",
"pg": "^8.6.0",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.3",
"@types/mime-types": "^2.1.0",
"@types/module-alias": "^2.0.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.6",
"@types/node": "^16.0.0",
"@types/uuid": "^8.3.1",
"@types/yup": "^0.29.12",
"nodemon": "^2.0.9",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"_moduleAliases": {
"@src": "src"
}
}