-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 1.24 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
{
"name": "elmish-react",
"version": "0.0.5",
"description": "My elmish React attempt with mini-signals",
"main": "dist/bundle.js",
"dependencies": {
"mini-signals": "^1.1.0",
"react": "^0.14.2",
"react-dom": "^0.14.2"
},
"devDependencies": {
"babel-core": "^5.4.7",
"babel-loader": "^5.1.2",
"express": "^4.13.3",
"rimraf": "^2.4.3",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0"
},
"keywords": [
"react",
"elm",
"architecture",
"example"
],
"repository": {
"type": "git",
"url": "https://github.com/paparga/elmish-react.git"
},
"bugs": {
"url": "https://github.com/paparga/elmish-react/issues"
},
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"publish": "npm run build && mkdir -p dist && cp index.html dist && cd dist && git init && git commit --allow-empty -m 'update site' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update site' && git push git@github.com:paparga/elmish-react gh-pages --force",
"start": "node devServer.js"
},
"author": "Pablo Parga",
"license": "MIT"
}