forked from cavdy-dev/share-it-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "share-it-api",
"version": "1.0.0",
"description": "where people share ideas",
"main": "app.js",
"scripts": {
"dev": "nodemon --exec babel-node ./server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cavdy-dev/share-it-api.git"
},
"author": "Cavdy",
"license": "ISC",
"bugs": {
"url": "https://github.com/cavdy-dev/share-it-api/issues"
},
"homepage": "https://github.com/cavdy-dev/share-it-api#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.17.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3",
"uuid": "^3.3.2",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"nodemon": "^1.19.1"
}
}