forked from peduarte/wallop-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "wallop-site",
"version": "1.0.0",
"description": "Website for wallop",
"main": "client/src/app.js",
"scripts": {
"build": "webpack -p --config webpack.prod.config.js --profile --progress --colors && npm run copy-static-files",
"deploy": "npm run build && ship dist -to gh-pages",
"dev": "webpack-dev-server --config webpack.config.js --profile --progress --colors",
"start": "npm run dev",
"mdhtmljson": "mdhtmljson https://raw.githubusercontent.com/peduarte/wallop/master/README.md -o ./src/data/readme.json",
"copy-static-files": "cp src/images/static/* dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peduarte/wallop-site.git"
},
"author": {
"name": "Pedro Duarte",
"email": "[email protected]",
"url": "http://pedroduarte.me"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/peduarte/wallop-site/issues"
},
"homepage": "https://github.com/peduarte/wallop-site/#readme",
"private": true,
"devDependencies": {
"babel-core": "^5.6.15",
"babel-loader": "^5.1.4",
"classie": "^1.0.0",
"css-loader": "^0.15.1",
"cssnext-loader": "^1.0.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"highlight.js": "^8.7.0",
"html-loader": "^0.3.0",
"json-loader": "^0.5.2",
"node-libs-browser": "^0.5.2",
"react-hot-loader": "^1.2.7",
"ship": "^0.2.4",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"wallop": "^2.1.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"react": "^0.13.3"
}
}