-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "zhir-api",
"version": "1.0.0",
"description": "this acts as the fron rest api for zhir.io",
"main": "index.js",
"scripts": {
"start": "node ./bin/server.js",
"dev": "npx nodemon ./bin/server.js",
"db:migrate": "npx knex migrate:latest --knexfile ./database/knexfile.js",
"db:seed": "npx knex seed:run --knexfile ./database/knexfile.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhir-io/API.git"
},
"keywords": [
"zhir.io",
"zhir"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhir-io/API/issues"
},
"homepage": "https://github.com/zhir-io/API#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.13"
},
"dependencies": {
"aws-sdk": "^2.995.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.11",
"md5": "^2.3.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemailer": "^6.6.5",
"pretty-bytes": "^5.6.0",
"rate-limiter-flexible": "^2.2.4",
"rotating-file-stream": "^2.1.5",
"sha1": "^1.1.1",
"superagent": "^6.1.0",
"uniqid": "^5.4.0",
"uuid": "^8.3.2"
}
}