forked from Arc-angelHack/onearcBackend_revised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 785 Bytes
/
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
{
"name": "onearc_back",
"version": "1.0.0",
"description": "Backend for onearc application",
"main": "index.js",
"scripts": {
"dev": "nodemon app.js",
"knex": "knex",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"start": "node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"pg": "^7.4.3",
"pluralize": "^7.0.0",
"shortid": "^2.2.13"
},
"devDependencies": {
"dotenv": "^6.0.0",
"nodemon": "^1.18.4",
"run-all": "^1.0.1"
}
}