-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 927 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": "testing_javascript",
"version": "1.0.0",
"description": "Based on \"Testing JavaScript applications\" written by Lucas Da Costa",
"main": "Cart.js",
"scripts": {
"start": "node index.js",
"test:watch": "jest --runInBand --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandrecoin/testing_javascript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexandrecoin/testing_javascript/issues"
},
"homepage": "https://github.com/alexandrecoin/testing_javascript#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^7.0.2",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"supertest": "^6.1.3"
},
"dependencies": {
"express": "^4.17.1",
"knex": "^0.21.16",
"nock": "^13.0.7",
"pino": "^6.11.0",
"sqlite3": "^5.0.1"
}
}