-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "pharos-graphql-server",
"version": "3.19.4",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "node src/index.js & (sleep 10 && jest)",
"justTests": "jest",
"start": "nodemon src/index.js",
"perfmon": "nodemon src/index.js perf",
"start:ci": "tsc && node src/index.js",
"gcp-build": "tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-datasource": "^0.1.3",
"apollo-datasource-rest": "^0.1.5",
"apollo-fetch": "^0.7.0",
"apollo-server": "^3.11.1",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-core": "^3.11.1",
"apollo-server-express": "^3.11.1",
"apollo-server-plugin-response-cache": "^3.8.1",
"apollo-server-testing": "^2.15.0",
"axios": "^0.21.1",
"body-parser": "^1.20.2",
"datasource-sql": "^1.0.2",
"express": "^4.17.1",
"graphql": "^15.8.0",
"graphql-tester": "0.0.5",
"graphql-tools": "^4.0.6",
"ioredis": "^5.0.4",
"isemail": "^3.1.3",
"knex": "^2.0.0",
"mysql": "^2.17.1",
"nodemon": "^1.19.4",
"sqlite3": "^5.1.4",
"sync-request": "^6.1.0",
"ts-node": "^8.10.2",
"typescript-require": "^0.3.0"
},
"devDependencies": {
"apollo-link": "^1.2.3",
"apollo-link-http": "^1.5.5",
"jest": "^23.6.0",
"nock": "^10.0.2",
"node-fetch": "^2.2.1",
"typescript": "^4.8.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
]
}
}