-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "wikidata-graphql",
"version": "0.0.1",
"description": "graphql api proxy for wikidata",
"main": "dist/index.js",
"repository": {},
"author": "Sean Lee",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"babel-runtime": "^6.25.0",
"dataloader": "^1.3.0",
"diacritics": "^1.3.0",
"express": "^4.15.4",
"express-graphql": "^0.6.7",
"graphql": "^0.10.5",
"wikidata-sdk": "^5.2.2",
"wrappy": "^1.0.2"
},
"scripts": {
"dev": "babel-node src/index.js",
"start": "node dist/index.js",
"build": "npm run compile;",
"postinstall": "npm run compile;",
"gen_config": "node scripts/gen_config.js",
"compile": "babel --out-dir dist src",
"test": "npm run build; node dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}