-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "kf-arranger",
"version": "1.13.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"watch": "nodemon index",
"deploy": "git push && git push --tags",
"test": "cross-env NODE_ENV=\"test\" nyc --reporter=html mocha --require @babel/register src/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kids-first/kf-arranger.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kids-first/kf-arranger/issues"
},
"homepage": "https://github.com/kids-first/kf-arranger#readme",
"dependencies": {
"@kfarranger/server": "1.19.0",
"@babel/core": "7.9.6",
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/register": "7.9.0",
"apollo-server-core": "1.3.2",
"aws-sdk": "^2.669.0",
"body-parser": "^1.18.2",
"chalk-animation": "^1.5.0",
"core-js": "^3.1.4",
"cors": "^2.8.4",
"express": "^4.16.2",
"filesize": "^3.6.1",
"graphql-parse-resolve-info": "^4.0.0-beta.7",
"keycloak-connect": "^14.0.0",
"node-fetch": "^2.1.1",
"python-shell": "^1.0.7",
"regenerator-runtime": "^0.13.2",
"socket.io": "^2.0.4",
"url-join": "^4.0.0"
},
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"chai": "^4.2.0",
"cross-env": "^6.0.1",
"mocha": "7.1.2",
"nodemon": "^1.17.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.3.2",
"sinon-express-mock": "^2.2.0",
"supertest": "^4.0.2"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
}
}