-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "test-techlive-hands-on",
"version": "1.0.0",
"description": "Teste para a palestra Tech Live.",
"main": "index.ts",
"scripts": {
"test": "export NODE_ENV='test'; jest -w 1 --verbose --forceExit --detectOpenHandles -c jest.config.js",
"coverage": "export NODE_ENV='test'; jest -w 1 --verbose --forceExit --collectCoverage --coverage --detectOpenHandles -c jest.config.js",
"build": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "nodemon --watch 'src/' --exec 'ts-node src/index.ts'"
},
"author": "Igor Cavalcanti",
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "^7.1.3",
"apollo-datasource": "^0.7.1",
"apollo-server": "^2.14.1",
"apollo-server-cache-redis": "^1.2.1",
"apollo-server-caching": "^0.5.1",
"config": "^3.3.1",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.16",
"typescript": "^3.9.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/ioredis": "^4.16.3",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.155",
"@types/mongodb": "^3.5.20",
"@types/mongoose": "^5.7.21",
"@types/sinon": "^9.0.4",
"apollo-server-testing": "^2.14.1",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"sinon": "^9.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2"
}
}