-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 867 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
{
"name": "Backend",
"version": "1.0.0",
"description": "Backend da aplicação 'Be The Hero', feita na Semana Omnistack 11 da Rocketseat",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.js",
"test": "cross-env NODE_ENv=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateusfg7/BeTheHero-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateusfg7/BeTheHero-Backend/issues"
},
"homepage": "https://github.com/mateusfg7/BeTheHero-Backend#readme",
"dependencies": {
"celebrate": "^12.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"knex": "^0.20.13",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"jest": "^25.2.3"
}
}