-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "geoimagenet-graphql",
"version": "0.2.4",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "jest",
"start": "concurrently \"npm run build -- --watch\" \"nodemon dist/index.js\"",
"start:ci": "npm run build && node dist/index.js",
"build": "babel src/ --out-dir dist/",
"flow": "flow",
"flow:deps": "flow-typed install",
"flow:check": "flow check ./src/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@sentry/node": "^5.4.0",
"apollo-datasource": "^0.1.3",
"apollo-datasource-rest": "^0.1.5",
"apollo-server": "2.2.0-alpha.2",
"graphql": "^14.0.2",
"isemail": "^3.1.3",
"nodemon": "^1.18.4",
"sanitize-filename": "^1.6.1",
"sequelize": "^4.39.0",
"sqlite3": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-destructuring": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"apollo-link": "^1.2.3",
"apollo-link-http": "^1.5.5",
"apollo-server-testing": "^2.2.0-alpha.2",
"concurrently": "^4.1.0",
"flow-bin": "^0.98.1",
"flow-typed": "^2.5.2",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"jest": "^24.8.0",
"nock": "^10.0.2",
"node-fetch": "^2.6.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
]
}
}