-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "bloql",
"version": "0.11.0",
"description": "Blog engine powered by React using Relay and GraphQL to interact with data",
"scripts": {
"dev": "webpack --watch --progress",
"clean": "rm -rf dist/",
"compile-server": "babel src/server --out-dir dist",
"cp-files": "cp package.json dist/ && cp README.md dist/",
"lint": "eslint src",
"update-schema": "babel-node ./scripts/updateSchema.js",
"watch": "gulp watch",
"build": "npm run clean && npm run lint && npm run compile-server && npm run update-schema && webpack && npm run cp-files"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:adriantoine/bloql.git"
},
"keywords": [
"blog",
"engine",
"react",
"relay",
"graphql"
],
"author": "Adrien Antoine <[email protected]> (http://adriantoine.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriantoine/bloql/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/adriantoine/bloql#readme",
"dependencies": {
"express-graphql": "^0.4.0",
"graphql": "^0.4.7",
"graphql-relay": "^0.3.2",
"lodash": "^3.10.1"
},
"peerDependencies": {
"react": "^0.14.0",
"react-relay": "^0.3.2"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"babel-relay-plugin": "^0.2.6",
"eslint": "^1.3.1",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.3.1",
"webpack": "^1.12.2"
}
}