-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "standup-api",
"version": "0.0.1",
"description": "",
"main": "/packages/api/src/index.js",
"scripts": {
"build": "yarn workspace @standup/common build && yarn workspace @standup/api build",
"lint": "eslint . --ext .ts,.gql 'packages/**/src/**'",
"type-check": "yarn workspace @standup/api build:types",
"start": "yarn workspace @standup/api start",
"generate-schema": "graphql-codegen --config codegen.yml",
"prepare": "husky install",
"test": "jest --maxWorkers 4",
"test:debug": "DEBUG=jest-mongodb:* jest",
"coverage": "NODE_ENV=test yarn jest --coverage --force-exit --detectOpenHandles",
"copy-schema": "node scripts/copySchema.js"
},
"keywords": [],
"author": "gileadekelvin",
"license": "ISC",
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@graphql-codegen/cli": "^2.6.1",
"@graphql-codegen/schema-ast": "^2.4.1",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-resolvers": "^2.5.0",
"@graphql-eslint/eslint-plugin": "^3.8.0",
"@shelf/jest-mongodb": "^2.2.1",
"@types/faker": "5.5.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.5.1",
"babel-polyfill": "^6.26.0",
"concurrently": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.1.1",
"faker": "5.5.3",
"graphql": "^16.3.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
},
"peerDependencies": {
"eslint-config-airbnb": "19.0.4"
},
"dependencies": {
"dotenv": "^16.0.1",
"mongoose": "^6.4.4"
}
}