-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 923 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
{
"name": "pagar.te",
"version": "1.0.0",
"description": "Sample PSP system",
"main": "src/entrypoint/web/index.js",
"directories": {
"test": "test/unit"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "^0.20.4",
"pg": "^7.14.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2",
"knex": "^0.20.4"
},
"scripts": {
"start": "node src/entrypoint/web/index.js",
"startpostgres": "node src/entrypoint/web/index.js postgres",
"test": "mocha --exclude test/web/postgrestransactionendpoints.js --recursive test",
"testpostgres": "mocha test/web/postgrestransactionendpoints.js",
"testall": "mocha --recursive test",
"build": "knex --knexfile db/postgres/knexfile.js migrate:latest"
},
"author": "Danilo S. Morães",
"license": "MIT"
}