-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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": "react-relay-scaffolding",
"version": "0.0.1",
"description": "React scaffolding with Webpack, Relay, GraphQL, ES6 syntax, CSS Modules",
"main": "app/index.js",
"scripts": {
"start": "webpack-dev-server --hot --inline --progress --colors",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martin-eq/react-relay-scaffolding.git"
},
"keywords": [
"react",
"relay",
"scaffolding",
"webpack",
"graphql",
"es6",
"css-modules"
],
"author": "Martin Quintana <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/martin-eq/react-relay-scaffolding/issues"
},
"homepage": "https://github.com/martin-eq/react-relay-scaffolding#readme",
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.3.0"
},
"dependencies": {
"babel": "^6.5.2",
"babel-runtime": "^6.6.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-mdl": "^1.5.4",
"react-router": "^2.4.0"
}
}