-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "audio-player-api",
"version": "0.1.0",
"description": "Api (Graphql + TypeScript + FP Resolvers)",
"main": "app.ts",
"lint-staged": {
"*.js": [
"npm run test:staged --",
"tslint --fix",
"git add"
]
},
"scripts": {
"start": "nodemon src/app.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:staged": "cross-env CI=true jest --env=jsdom --findRelatedTests",
"lint": "tslint --fix -c ./tslint.json -p tsconfig.json",
"lint-staged": "lint-staged"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/inversify": "^2.0.33",
"@types/jest": "^27.0.0",
"@types/mongodb": "^4.0.0",
"apollo-datasource-rest": "^3.0.0",
"apollo-server-koa": "^3.0.0",
"apollo-server-testing": "^2.3.1",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"config": "^3.0.0",
"cross-env": "^7.0.0",
"graphql": "^16.0.0",
"graphql-import": "^1.0.0",
"graphql-resolvers": "^0.4.0",
"graphql-tools": "^8.0.0",
"husky": "^7.0.0",
"inversify": "^6.0.0",
"jsonwebtoken": "^8.4.0",
"koa": "^2.5.0",
"lint-staged": "^11.0.0",
"mongodb": "^4.0.0",
"ramda": "^0.27.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.0.0",
"typemoq": "^2.1.0",
"typescript": "^4.0.0",
"winston": "^3.0.0",
"winston-loggly": "^1.3.1"
},
"devDependencies": {
"@types/bluebird": "3.5.36",
"@types/config": "0.0.39",
"@types/core-js": "2.5.5",
"@types/jsonwebtoken": "8.5.5",
"@types/node": "16.11.6",
"casual": "1.6.2",
"jest": "27.4.0",
"nodemon": "1.19.4",
"ora": "6.0.1",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"tslint": "latest",
"tslint-config-prettier": "1.17.0",
"tslint-immutable": "6.0.1"
}
}