-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "apollo-lambda",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "ts-node src/local.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/validator": "^13.1.0",
"apollo-server": "^2.17.0",
"apollo-server-lambda": "^2.17.0",
"graphql": "^15.3.0",
"graphql-tools": "^6.2.3",
"jest": "^26.4.2",
"mysql2": "^2.2.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.15.1",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"serverless-offline": "^6.7.0",
"serverless-plugin-typescript": "^1.1.9",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}