This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "modelizr",
"version": "1.0.4",
"description": "Generate GraphQL queries from Data Models that can be mocked and normalized.",
"main": "lib/index.js",
"scripts": {
"start": "node example/index.js",
"test": "jest",
"lint": "eslint src",
"flow": "flow",
"build": "rm -rf lib && babel src -d lib",
"prepublish": "yarn run build",
"docs:clean": "rm -rf _book",
"docs:prepare": "gitbook install",
"docs:make": "yarn run docs:prepare && gitbook build",
"docs:watch": "yarn run docs:prepare && gitbook serve",
"docs:publish": "yarn run docs:clean && yarn run docs:make && cd _book && git init && git add . && git commit -m 'docs' && git checkout -b gh-pages && git push [email protected]:julienvincent/modelizr gh-pages --force && cd ../ && yarn run docs:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julienvincent/modelizr.git"
},
"keywords": [
"modelizr",
"graphql",
"model",
"normalizr",
"mock",
"queries"
],
"author": "Julien Vincent",
"license": "MIT",
"bugs": {
"url": "https://github.com/julienvincent/modelizr/issues"
},
"homepage": "https://github.com/julienvincent/modelizr#readme",
"dependencies": {
"faker": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.16.6",
"normalizr": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^3.2.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.0",
"coveralls": "^2.11.15",
"eslint": "^2.10.2",
"eslint-plugin-babel": "^3.2.0",
"express": "^4.13.4",
"flow-bin": "^0.34.0",
"jest": "^18.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-inspector": "0.9.0",
"redux-thunk": "^2.1.0",
"webpack": "1.14.0",
"webpack-dev-middleware": "^1.6.1"
},
"jest": {
"testPathIgnorePatterns": [
"client"
],
"collectCoverage": true
}
}