forked from Joystream/orion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "orion",
"version": "1.0.0",
"description": "Video view count service for Joystream",
"license": "ISC",
"directories": {
"src": "src"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Joystream/joystream.git"
},
"bugs": {
"url": "https://github.com/Joystream/joystream/issues"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "NODE_ENV=development ts-node-dev --respawn src/main.ts",
"build": "yarn clean && yarn tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"lint": "yarn lint:ts && yarn lint:prettier",
"lint:ts": "eslint --ext .ts --max-warnings 0 ./src",
"lint:prettier": "prettier --check ./src",
"test": "jest"
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write"
]
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.3.3",
"@graphql-tools/load": "^7.4.1",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/stitch": "^8.4.1",
"@graphql-tools/url-loader": "^7.5.2",
"@typegoose/auto-increment": "^1.3.0",
"@typegoose/typegoose": "^9.8.1",
"apollo-server-core": "^3.8.1",
"apollo-server-express": "^3.8.1",
"class-validator": "^0.13.2",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^15.8.0",
"lodash": "^4.17.21",
"mongodb": "^4.6.0",
"mongoose": "^6.3.4",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@joystream/prettier-config": "^1.0.0",
"@shelf/jest-mongodb": "^3.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.36",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.4.5",
"husky": "^4.3.0",
"jest": "^28.1.0",
"lint-staged": "^12.4.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.2"
},
"resolutions": {
"cross-undici-fetch": "0.4.3"
},
"engines": {
"node": "^16.13.1"
},
"packageManager": "[email protected]"
}