-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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": "js-react-starting-kit",
"version": "1.0.0",
"description": "Starting a project with React/Flux Webpack Babel and SASS",
"main": "./src/js/main.js",
"scripts": {
"build": "hugo server --config=config/hugo.config.yaml; webpack --config=config/webpack.config.js",
"hugo-server": "hugo server --config=config/hugo.config.yaml --destination=public --port=8181",
"webpack-server": "webpack-dev-server --config=config/webpack.config.js --port=8282 --watch --debug --verbose --progress --colors",
"webpack-watcher": "webpack --config=config/webpack.config.js --watch --debug --verbose --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dpordomingo/js-react-starting-kit.git"
},
"keywords": [
"React",
"Flux",
"Webpack",
"Babel",
"SASS"
],
"author": "David Pordomingo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dpordomingo/js-react-starting-kit/issues"
},
"homepage": "https://github.com/dpordomingo/js-react-starting-kit#readme",
"dependencies": {
"immutable": "^3.8.1",
"redux": "^3.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.6",
"whatwg-fetch": "^2.0.0",
"es6-promise": "^4.0.5"
},
"devDependencies": {
"imports-loader": "^0.6.5",
"exports-loader": "^0.6.3",
"webpack": "^1.13",
"babel-core": "^6.18",
"babel-loader": "^6.2",
"babel-preset-es2015": "^6.18",
"babel-preset-react": "^6.16",
"extract-text-webpack-plugin": "^1.0.1",
"style-loader": "^0.13.1",
"css-loader": "^0.25.0",
"sass-loader": "^4.0.2",
"node-sass": "^3.12"
}
}