Files: 5a7663a5d757aa4698e9762f3ff4d47071b72be4 / package.json
4440 bytesRaw
1 | { |
2 | "name": "business-stack", |
3 | "version": "0.0.0", |
4 | "description": "real-world production-quality TodoMVC example", |
5 | "scripts": { |
6 | "knex": "knex", |
7 | "postinstall": "lnfs app node_modules/app", |
8 | "lint": "snazzy", |
9 | "format": "snazzy --format", |
10 | "test": "NODE_ENV=test npm-run-all -p test:*", |
11 | "test:spec": "ava", |
12 | "test:feature": "cucumber-js", |
13 | "pg:pull": "docker pull postgres", |
14 | "pg:run": "docker run -d -p 5432:5432 --name=business-postgres postgres", |
15 | "pg:start": "docker start business-postgres", |
16 | "pg:stop": "docker stop business-postgres", |
17 | "pg:rm": "docker rm business-postgres", |
18 | "pg:logs": "docker logs business-postgres", |
19 | "dev:render-browser": "BABEL_ENV=hot watchify app/render -o build/bundle.js -dv -p browserify-hmr", |
20 | "dev:render-node": "node-dev render", |
21 | "dev:assets": "cpx \"app/assets/**/*\" build -w", |
22 | "dev:livereload": "wtch -d build -e html,css,png,gif,jpg | garnish --level debug", |
23 | "dev:api": "node-dev api", |
24 | "dev:static": "node-dev static", |
25 | "prod:render-browser": "browserify app/render -o build/bundle.js -g envify -g uglifyify", |
26 | "prod:render-node": "node render", |
27 | "prod:assets": "cpx \"app/assets/**/*\" build", |
28 | "prod:api": "node api", |
29 | "prod:static": "node static", |
30 | "dev": "NODE_ENV=development npm-run-all -p dev:*", |
31 | "prod": "NODE_ENV=production npm-run-all prod:render-browser prod:assets -p prod:render-node prod:api prod:static" |
32 | }, |
33 | "ava": { |
34 | "cache": false, |
35 | "files": [ |
36 | "**/*.spec.js" |
37 | ], |
38 | "require": [ |
39 | "babel-core/register", |
40 | "css-modules-require-hook" |
41 | ] |
42 | }, |
43 | "repository": { |
44 | "type": "git", |
45 | "url": "git+https://github.com/enspiral-craftworks/business-stack.git" |
46 | }, |
47 | "keywords": [ |
48 | "todomvc", |
49 | "example", |
50 | "react", |
51 | "redux", |
52 | "frp", |
53 | "functional", |
54 | "reactive", |
55 | "immutable", |
56 | "feathers", |
57 | "ddd", |
58 | "tcomb" |
59 | ], |
60 | "author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)", |
61 | "license": "ISC", |
62 | "bugs": { |
63 | "url": "https://github.com/enspiral-craftworks/business-stack/issues" |
64 | }, |
65 | "homepage": "https://github.com/enspiral-craftworks/business-stack#readme", |
66 | "engines": { |
67 | "node": "^4.0.0", |
68 | "npm": "^3.0.0" |
69 | }, |
70 | "devDependencies": { |
71 | "ava": "^0.11.0", |
72 | "babel-plugin-react-transform": "^2.0.0", |
73 | "browserify-hmr": "^0.3.1", |
74 | "cucumber": "^0.9.2", |
75 | "ecstatic-lr": "^1.0.1", |
76 | "feathers-memory": "^0.6.0", |
77 | "garnish": "^5.0.1", |
78 | "multi-glob": "^1.0.1", |
79 | "node-dev": "^3.0.0", |
80 | "react-transform-catch-errors": "^1.0.0", |
81 | "react-transform-hmr": "^1.0.1", |
82 | "redbox-react": "^1.2.0", |
83 | "redux-devtools": "^3.0.0", |
84 | "redux-devtools-dock-monitor": "^1.0.1", |
85 | "redux-devtools-log-monitor": "^1.0.1", |
86 | "redux-logger": "^2.3.2", |
87 | "run-parallel": "^1.1.4", |
88 | "watchify": "^3.6.1", |
89 | "wtch": "^4.0.1", |
90 | "zombie": "^4.2.1" |
91 | }, |
92 | "dependencies": { |
93 | "babel-core": "^6.2.1", |
94 | "babel-plugin-lodash": "^2.0.1", |
95 | "babel-plugin-transform-class-properties": "^6.3.13", |
96 | "babel-plugin-transform-object-rest-spread": "^6.1.18", |
97 | "babel-plugin-transform-runtime": "^6.4.3", |
98 | "babel-preset-es2015": "^6.1.18", |
99 | "babel-preset-react": "^6.1.18", |
100 | "babel-runtime": "^6.3.19", |
101 | "babelify": "^7.2.0", |
102 | "body-parser": "^1.14.2", |
103 | "browserify": "github:ahdinosaur/node-browserify", |
104 | "bulk-require": "^0.2.1", |
105 | "bulkify": "^1.1.1", |
106 | "cors": "^2.7.1", |
107 | "cpx": "^1.2.1", |
108 | "css-modules-require-hook": "^2.1.0", |
109 | "cssify": "github:ahdinosaur/cssify", |
110 | "ecstatic": "^1.4.0", |
111 | "envify": "^3.4.0", |
112 | "evalify": "github:ahdinosaur/evalify#minimatch", |
113 | "feathers": "^2.0.0-pre.4", |
114 | "feathers-action": "^1.0.2", |
115 | "feathers-authentication": "^0.2.2", |
116 | "feathers-hooks": "^1.0.0-pre.4", |
117 | "feathers-knex": "^2.1.0", |
118 | "feathers-rest": "^1.2.2", |
119 | "feathers-tcomb": "^1.0.0", |
120 | "isomorphic-fetch": "^2.2.1", |
121 | "knex": "^0.9.0", |
122 | "lnfs-cli": "^1.0.1", |
123 | "lodash": "^4.3.0", |
124 | "npm-run-all": "^1.5.0", |
125 | "pg": "^4.4.3", |
126 | "pinkie-promise": "^2.0.0", |
127 | "predirect": "^1.1.0", |
128 | "react": "^0.14.3", |
129 | "react-dom": "^0.14.3", |
130 | "react-redux": "^4.0.1", |
131 | "react-router": "^2.0.0", |
132 | "redux": "^3.0.5", |
133 | "redux-simple-router": "2.0.4", |
134 | "redux-thunk": "^1.0.0", |
135 | "reselect": "^2.0.2", |
136 | "send-data": "^8.0.0", |
137 | "simple-rc": "^1.0.0", |
138 | "tcomb": "^2.6.0", |
139 | "uglifyify": "^3.0.1" |
140 | } |
141 | } |
142 |
Built with git-ssb-web