git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 9d67b590db76e98e5b5b7bb977d7e2337173be05

Files: 9d67b590db76e98e5b5b7bb977d7e2337173be05 / package.json

4239 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": "npm-run-all -p test:*",
11 "test:spec": "ava",
12 "test:feature": "node app/features",
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 -p prod:*"
32 },
33 "ava": {
34 "files": [
35 "**/*.spec.js"
36 ]
37 },
38 "repository": {
39 "type": "git",
40 "url": "git+https://github.com/enspiral-craftworks/business-stack.git"
41 },
42 "keywords": [
43 "todomvc",
44 "example",
45 "react",
46 "redux",
47 "frp",
48 "functional",
49 "reactive",
50 "immutable",
51 "feathers",
52 "ddd",
53 "tcomb"
54 ],
55 "author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)",
56 "license": "ISC",
57 "bugs": {
58 "url": "https://github.com/enspiral-craftworks/business-stack/issues"
59 },
60 "homepage": "https://github.com/enspiral-craftworks/business-stack#readme",
61 "engines": {
62 "node": "^4.0.0",
63 "npm": "^3.0.0"
64 },
65 "devDependencies": {
66 "ava": "github:sindresorhus/ava#16c7282e97c9ab671bc1d56920fd3fb125a65eab",
67 "babel-plugin-react-transform": "^2.0.0",
68 "browserify-hmr": "^0.3.1",
69 "cuke-tap": "^1.0.2",
70 "ecstatic-lr": "^1.0.1",
71 "feathers-memory": "^0.5.1",
72 "garnish": "^5.0.1",
73 "multi-glob": "^1.0.1",
74 "jsdom": "^7.1.0",
75 "node-dev": "^2.7.1",
76 "react-transform-catch-errors": "^1.0.0",
77 "react-transform-hmr": "^1.0.1",
78 "redbox-react": "^1.2.0",
79 "redux-devtools": "^3.0.0",
80 "redux-devtools-dock-monitor": "^1.0.1",
81 "redux-devtools-log-monitor": "^1.0.1",
82 "redux-logger": "^2.0.4",
83 "run-parallel": "^1.1.4",
84 "tape": "^4.4.0",
85 "watchify": "^3.6.1",
86 "wtch": "^4.0.1"
87 },
88 "dependencies": {
89 "babel-core": "^6.2.1",
90 "babel-plugin-transform-class-properties": "^6.3.13",
91 "babel-plugin-transform-object-rest-spread": "^6.1.18",
92 "babel-plugin-transform-runtime": "^6.1.18",
93 "babel-preset-es2015": "^6.1.18",
94 "babel-preset-react": "^6.1.18",
95 "babel-runtime": "^6.2.0",
96 "babelify": "^7.2.0",
97 "browserify": "github:ahdinosaur/node-browserify",
98 "bulk-require": "^0.2.1",
99 "bulkify": "^1.1.1",
100 "cors": "^2.7.1",
101 "cpx": "^1.2.1",
102 "css-modules-require-hook": "^2.1.0",
103 "cssify": "github:ahdinosaur/cssify",
104 "ecstatic": "^1.4.0",
105 "envify": "^3.4.0",
106 "evalify": "github:ahdinosaur/evalify#minimatch",
107 "feathers": "^2.0.0-pre.1",
108 "feathers-action": "^1.0.1",
109 "feathers-client": "^0.5.0",
110 "feathers-hooks": "^0.5.1",
111 "feathers-knex": "^2.0.0",
112 "feathers-rest": "^1.0.0",
113 "feathers-tcomb": "^1.0.0",
114 "history": "^1.13.1",
115 "isomorphic-fetch": "^2.2.0",
116 "lnfs-cli": "^1.0.1",
117 "npm-run-all": "^1.3.2",
118 "pg": "^4.4.3",
119 "pinkie-promise": "^2.0.0",
120 "predirect": "^1.1.0",
121 "ramda": "^0.18.0",
122 "react": "^0.14.3",
123 "react-dom": "^0.14.3",
124 "react-redux": "^4.0.1",
125 "react-router": "^1.0.0",
126 "redux": "^3.0.5",
127 "redux-simple-router": "0.0.10",
128 "redux-thunk": "^1.0.0",
129 "send-data": "^8.0.0",
130 "simple-rc": "^1.0.0",
131 "tcomb": "^2.5.2",
132 "uglifyify": "^3.0.1"
133 }
134}
135

Built with git-ssb-web