-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
{
"name": "diegesis-server",
"version": "0.5.1",
"description": "A New Apollo-based Server for Diegesis",
"main": "src/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --testTimeout=30000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Proskomma/diegesis-server.git"
},
"keywords": [
"Proskomma",
"Diegesis",
"GraphQL",
"Scripture"
],
"author": "Mark Howe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Proskomma/diegesis-server/issues"
},
"homepage": "https://github.com/Proskomma/diegesis-server#readme",
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.2.2",
"nodemon": "^2.0.15"
},
"dependencies": {
"@graphql-tools/merge": "^8.2.7",
"apollo-server-express": "^3.6.4",
"app-root-path": "^3.0.0",
"axios": "^1.1.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"fs-extra": "^10.0.1",
"graphql": "^16.3.0",
"helmet": "^6.0.0",
"jszip": "^3.7.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"os": "^0.1.2",
"path": "^0.12.7",
"proskomma-utils": "^0.8.2",
"uw-proskomma": "^0.8.5",
"winston": "^3.7.2",
"xmldom": "^0.6.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"globals": {
"__app__": null,
"__server__": null,
"__dataDir__": null
}
}
}