ducky/web
ducky/web/package.json
Stop ignoring our build folder. Now that our HTML lives in our build folder, we should probably stop ignoring it. This means that an `hg clone` followed by an `npm install` followed by an `npm run deploy` will work. I hope.
1 {
2 "name": "ducky",
3 "version": "0.0.1",
4 "author": "Second Bit",
5 "license": "MIT",
6 "dependencies": {
7 "ampersand-app": "^1.0.4",
8 "ampersand-collection": "^1.4.5",
9 "ampersand-model": "^5.0.3",
10 "ampersand-react-mixin": "^0.1.2",
11 "ampersand-router": "^3.0.2",
12 "ampersand-sync": "^3.0.7",
13 "babel": "^5.1.13",
14 "babel-loader": "^5.0.0",
15 "css-loader": "^0.12.0",
16 "extract-text-webpack-plugin": "^0.7.0",
17 "file-loader": "^0.8.1",
18 "find-root": "^0.1.1",
19 "jwt-decode": "^1.1.0",
20 "ladda": "^0.9.8",
21 "local-links": "^1.4.0",
22 "lodash.debounce": "^3.0.3",
23 "lodash.isobject": "^3.0.1",
24 "minimist": "^1.1.1",
25 "node-bourbon": "^4.2.1-beta1",
26 "node-neat": "^1.7.1-beta1",
27 "node-sass": "^2.1.1",
28 "normalize.css": "^3.0.3",
29 "qs": "^2.4.1",
30 "react": "^0.13.2",
31 "react-ladda": "^2.0.4",
32 "react-script-loader": "0.0.1",
33 "sass-loader": "0.4.2",
34 "style-loader": "^0.12.0",
35 "url-loader": "^0.5.5",
36 "webpack": "1.8.9"
37 },
38 "devDependencies": {
39 "react-hot-loader": "^1.2.5",
40 "webpack-dev-server": "^1.8.2"
41 },
42 "scripts": {
43 "build": "NODE_ENV=production webpack",
44 "start": "bin/dev-server",
45 "deploy": "surge ./build/"
46 }
47 }