-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "hackathon_starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node --harmony server.js",
"local": "npm run build && node --harmony server.js",
"browserify": "browserify -t [ babelify --presets [ es2015 react ] ] react.js -o public/build/bundle.js",
"watchify": "watchify -v -t [ babelify --presets [ es2015 react ] ] react.js -o public/build/bundle.js",
"build": "webpack --progress --colors",
"watch": "webpack --progress --colors --watch",
"live": "webpack-dev-server --progress --colors --content-base /public/",
"help-live": "echo 'http://localhost:8080/webpack-dev-server/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphara/hackathon_starter.git"
},
"author": "Artem Arakcheev",
"license": "ISC",
"bugs": {
"url": "https://github.com/alphara/hackathon_starter/issues"
},
"homepage": "https://github.com/alphara/hackathon_starter#readme",
"dependencies": {
"body-parser": "^1.15.2",
"morgan": "^1.7.0",
"radium": "0.18.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"whatwg-fetch": "1.0.0"
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babelify": "7.3.0",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1",
"watchify": "3.7.0"
}
}