-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "polaris-entities-example",
"version": "0.1.0",
"private": true,
"scripts": {
"coverage": "jest --coverage",
"start": "ts-node --files src/bin/www",
"dev": "nodemon",
"build": "tsc -p tsconfig.json",
"prd": "pm2 start bin/www",
"test": "npm run lint:fix && jest",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"gql:generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@enigmatis/mongo-driver": "^1.8.2",
"@enigmatis/polaris": "^2.9.0",
"@enigmatis/polaris-logs": "^2.5.3",
"@enigmatis/utills": "^1.3.1",
"@types/dotenv": "^6.1.1",
"apollo-server-koa": "^2.4.8",
"debug": "^2.6.3",
"dotenv": "^7.0.0",
"graphql": "^14.2.1",
"inversify": "^5.0.1",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^2.0.1",
"koa-respond": "^2.1.0",
"koa-router": "^7.1.1",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.5.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.1.0",
"@graphql-codegen/typescript": "1.0.7",
"@graphql-codegen/typescript-resolvers": "1.0.7",
"@types/jest": "^24.0.11",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/node": "10.12.12",
"@types/uuid": "^3.4.4",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.4"
}
}