-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "Backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/olympiawoj/Backend.git",
"author": "olympia <owojcik7@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npm run migrate; node index.js",
"server": "nodemon --inspect",
"test": "cross-env DB_ENV=testing jest --watchAll --verbose",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"testdb": "knex migrate:latest --env=testing"
},
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"pg": "^7.10.0",
"sqlite3": "^4.0.6",
"superagent": "^5.0.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
}
}