-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.54 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@entria/graphql-mongo-helpers": "^1.0.1",
"@entria/graphql-mongoose-loader": "^4.3.2",
"@koa/cors": "2",
"bcrypt": "^5.0.1",
"dataloader": "^1.4.0",
"dotenv": "^8.0.0",
"dotenv-safe": "^8.2.0",
"get-graphql-schema": "^2.1.2",
"graphql": "^14.7.0",
"graphql-relay": "0.7.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-graphql": "^0.8.0",
"koa-jwt": "^3.5.1",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"mongoose": "5.11.18",
"prettier": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "7.16.7",
"@babel/core": "7.13.8",
"@babel/node": "7.16.7",
"@babel/plugin-proposal-async-generator-functions": "7.16.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
"@babel/plugin-proposal-object-rest-spread": "7.16.7",
"@babel/plugin-proposal-optional-chaining": "7.16.7",
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@babel/plugin-transform-async-to-generator": "7.13.0",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.16.7",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime": "^7.14.6",
"@types/babel__core": "7.1.18",
"@types/babel__preset-env": "7.9.2",
"@types/dotenv-safe": "8.1.1",
"@types/webpack-dev-server": "3.11.1",
"@types/webpack-node-externals": "2.5.3",
"babel-jest": "^27.0.6",
"babel-loader": "8.2.3",
"babel-node": "^0.0.1-security",
"babel-plugin-require-context-hook": "1.0.0",
"clean-webpack-plugin": "3.0.0",
"jest": "^27.4.7",
"jest-junit": "12.0.0",
"log4js": "^4.1.1",
"mongodb-memory-server-global": "6.9.3",
"nodemon": "^1.19.0",
"reload-server-webpack-plugin": "1.0.1",
"supertest": "^6.1.6",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.2",
"webpack-merge": "5.7.3",
"webpack-node-externals": "2.5.2"
},
"scripts": {
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"jest": "jest",
"start": "webpack --watch --progress --config webpack.config.js",
"schema": "yarn b webpackx.ts ./scripts/updateSchema.js"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}