-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "react-build",
"version": "0.1.0",
"description": "Frontend build with react samples",
"main": "js/app.jsx",
"private": true,
"scripts": {
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' && cp -r css dist/ && cp -r images dist/",
"build_win": "webpack -p --define process.env.NODE_ENV='\"production\"' && xcopy /Y css dist\\css\\ && xcopy /Y images dist\\images\\",
"watch": "webpack --watch",
"start": "node server.js"
},
"keywords": [
"react"
],
"author": "Øyvind Volden",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.4.0",
"core-js": "^2.3.0",
"es6-promise": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"react-router": "^2.2.4",
"react-router-redux": "^4.0.4",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"chai": "^3.5.0",
"css-loader": "^0.18.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"mocha": "^2.4.5",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}