-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "matching-app",
"version": "0.1.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r dotenv/config server.js",
"migrate": "DATABASE_URL=postgres://postgres:mypw@localhost/postgres node-pg-migrate",
"migrate:windows": "SET DATABASE_URL=postgres://postgres:mypw@localhost/postgres&& node-pg-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cubos-academy/matching-app.git"
},
"keywords": [],
"author": "Nícolas 'eowfenth' Deçordi",
"license": "GPL-3",
"bugs": {
"url": "https://github.com/cubos-academy/matching-app/issues"
},
"homepage": "https://github.com/cubos-academy/matching-app#readme",
"dependencies": {
"aws-sdk": "^2.665.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"pg": "^8.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"node-pg-migrate": "^4.6.2"
}
}