-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 KB
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
{
"name": "mnb-sample-api",
"version": "1.7.1",
"main": "dist/app.js",
"repository": "https://github.com/MouseLightPipeline/sample-api.git",
"author": "Patrick Edson <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"dockerRepository": "mouselightdatabrowser",
"dockerImageName": "sample-api",
"scripts": {
"debug": "tsc && node --trace-warnings --max-old-space-size=8192 --optimize-for-size src/app.js",
"express": "node dist/app.js",
"clean": "gulp clean",
"compile": "gulp compile",
"build": "gulp build",
"docker-build": "gulp docker-build",
"docker-release": "gulp release"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(test|spec)\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.9.7",
"csv": "^5.1.3",
"csv-parse": "^4.8.6",
"debug": "^4.1.1",
"express": "^4.17.1",
"global": "^4.4.0",
"graphql": "^14.5.8",
"isomorphic-fetch": "^2.2.1",
"pg": "^8.7.1",
"sequelize": "^5.21.1",
"uuid": "^3.3.3",
"uuid-validate": "^0.0.3"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/gulp": "4.0.6",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.6",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"apollo-server": "^2.9.7",
"apollo-server-testing": "^2.9.7",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"jest": "^24.9.0",
"merge-stream": "^2.0.0",
"sqlite3": "^4.1.0",
"ts-jest": "^24.1.0"
}
}