-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "shoyu-test",
"version": "1.0.0",
"main": "./src/index.js",
"author": "Salman Ahmad <[email protected]>",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"_moduleAliases": {
"@src": "./dist"
},
"_moduleAliasIgnoreWarning": true,
"scripts": {
"build": "tsc && cp -r ./src/graphql/schema/*.graphql ./dist/graphql/schema/",
"build-start": "yarn build && yarn start",
"dev": "nodemon",
"gen-gql-types": "graphql-codegen",
"lint": "eslint --color . --ext .ts,.mjs --fix",
"postinstall": "mkdir -p dist && link-module-alias",
"prebuild": "yarn gen-gql-types",
"predev": "yarn gen-gql-types -- --watch &",
"preinstall": "which link-module-alias && link-module-alias clean || echo",
"prepare": "husky install",
"start": "node ./dist/index",
"test-watch": "jest --watch --verbose",
"test": "jest"
},
"dependencies": {
"@graphql-tools/merge": "^8.1.2",
"apollo-server": "^3.4.0",
"bull": "^3.29.2",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"graphql": "^15.6.1",
"graphql-resolvers": "^0.4.2",
"joi": "^17.4.2",
"kill-port": "^1.6.1",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.21",
"mongoose": "^6.0.10",
"tsconfig-paths": "^3.11.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.2",
"@types/bull": "^3.15.5",
"@types/mongoose": "^5.11.97",
"@types/mongoose-promise": "^4.5.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
}
}