-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "graphiql-feen",
"version": "1.0.0",
"description": "Chrome extensions for working with GraphQL",
"scripts": {
"dev": "node scripts/dev",
"build": "node scripts/build",
"compress": "node scripts/compress",
"compress-keygen": "crx keygen",
"clean": "rm -rf build/ dev/ *.zip *.crx",
"lint": "eslint app chrome test scripts webpack/*.js",
"test": "cross-env NODE_PATH=app/scripts NODE_ENV=test mocha -r ./test/setup-app test/app"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"chrome",
"extension",
"react",
"redux",
"hot reload",
"webpack"
],
"author": "Bret Patterson <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-plugin-webpack-loaders": "^0.7.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.5.0",
"chai": "^3.2.0",
"chromedriver": "^2.19.0",
"co-mocha": "^1.1.2",
"cross-env": "^1.0.7",
"crx": "^3.0.3",
"css-loader": "^0.23.1",
"eslint": "^2.5.3",
"eslint-plugin-disallow-methods": "~0.1.0",
"eslint-plugin-extra-rules": "~0.6.1",
"eslint-plugin-immutablejs": "~0.1.3",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.2.1",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"rimraf": "^2.4.3",
"sass-loader": "^3.1.1",
"selenium-webdriver": "^2.47.0",
"shelljs": "^0.7.0",
"sinon": "^1.17.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-httpolyglot-server": "^0.2.0"
},
"dependencies": {
"babel-runtime": "^6.3.19",
"bluebird": "^3.3.4",
"classnames": "^2.1.3",
"graphiql": "^0.7.8",
"graphql": "^0.6.2",
"immutable": "^3.7.5",
"lodash": "^4.15.0",
"material-ui": "^0.15.4",
"react": "^15.3.0",
"react-addons-perf": "^15.3.0",
"react-dock": "^0.2.3",
"react-dom": "^15.3.0",
"react-immutable-proptypes": "~1.7.0",
"react-immutable-render-mixin": "~0.9.5",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-actions": "^0.9.1",
"redux-batched-subscribe": "^0.1.4",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1",
"seamless-immutable": "^6.1.1",
"transit-immutable-js": "^0.6.0",
"transit-js": "^0.8.846",
"whatwg-fetch": "~0.11.0"
}
}