This repository has been archived by the owner on Jan 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "streamer",
"version": "1.0.0",
"description": "Knex streaming",
"main": "index.js",
"scripts": {
"test": "babel-tape-runner ./tests/test.js | colortape",
"start": "babel-node ./index.js",
"watch": "watchify src/index.jsx -o public/js/app.js -v",
"build": "browserify src/index.jsx -o public/js/app.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-challenges/streamer.git"
},
"keywords": [],
"author": "Charles F. Munat <chas@munat.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dev-academy-challenges/streamer/issues"
},
"homepage": "https://github.com/dev-academy-challenges/streamer#readme",
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"bcrypt": "^0.8.5",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"knex": "^0.10.0",
"pg": "^4.5.1",
"pg-query-stream": "^1.0.0",
"ramda": "^0.19.1",
"react": "^0.14.7",
"react-addons-pure-render-mixin": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"redux": "^3.3.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.1",
"colortape": "^0.1.1",
"enzyme": "^2.0.0",
"extend-tape": "^1.2.0",
"node-jsdom": "^3.1.5",
"react-addons-test-utils": "^0.14.7",
"react-unit": "^1.1.3",
"sinon": "^1.17.3",
"supertest": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"tape-jsx-equals": "^1.0.0",
"watchify": "^3.7.0"
}
}