forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.09 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "api",
"version": "0.0.0",
"license": "MIT",
"author": "Kriasoft (https://github.com/kriasoft)",
"main": "lib/index.js",
"scripts": {
"start": "nodemon ./src",
"start-debug": "nodemon --inspect ./src",
"test": "jest",
"build": "babel ./src -x .ts --out-dir lib --copy-files --no-copy-ignored --delete-dir-on-start --verbose && del \"lib/**/__snapshots__\" \"lib/**/*.md\" && yarn bundle",
"push": "babel-node -x .ts ./scripts/push --",
"deploy": "babel-node -x .ts ./scripts/deploy --",
"update-schema": "babel-node -x .ts -r env ./scripts/update-schema",
"update-types": "babel-node -x .ts ./scripts/update-types",
"api:start": "yarn workspace api start",
"api:start-debug": "yarn workspace api start-debug",
"api:test": "yarn workspace api test",
"api:build": "yarn workspace api build",
"api:update-schema": "yarn workspace api update-schema",
"api:update-types": "yarn workspace api update-types"
},
"dependencies": {
"@sendgrid/mail": "^7.2.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"cross-spawn": "^7.0.3",
"dataloader": "^2.0.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"faker": "^4.1.0",
"google-auth-library": "^6.0.6",
"graphql": "^15.3.0",
"graphql-relay": "^0.6.0",
"graphql-voyager": "^1.0.0-rc.31",
"handlebars": "^4.7.6",
"idx": "^2.5.6",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"lodash": "^4.17.20",
"moment-timezone": "^0.5.31",
"nanoid": "^3.1.12",
"pg": "^8.3.2",
"pretty-error": "^2.1.1",
"slugify": "^1.4.5",
"source-map-support": "^0.5.19",
"uuid": "^8.3.0",
"validator": "^13.1.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@types/cookie": "^0.4.0",
"@types/cross-spawn": "^6.0.2",
"@types/express": "^4.17.7",
"@types/faker": "^4.1.12",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.159",
"@types/minimist": "^1.2.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14.6.0",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"babel-jest": "^26.3.0",
"babel-plugin-idx": "^2.4.0",
"del-cli": "^3.0.1",
"env": "workspace:*",
"jest": "^26.4.1",
"minimist": "^1.2.5",
"nodemon": "^2.0.4",
"typescript": "3.9.7"
},
"engines": {
"node": ">=12"
},
"private": true,
"nodemonConfig": {
"ext": "ts,json,hbs",
"exec": "babel-node -x .ts -r env"
},
"eslintConfig": {
"ignorePatterns": [
"/lib/"
]
},
"jest": {
"testPathIgnorePatterns": [
"/lib/"
],
"testEnvironment": "node"
}
}