-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.05 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
{
"name": "voice-of-interconnect",
"version": "1.0.0",
"description": "Offline First demo app for IBM InterConnect 2017",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nyc tap 'test/hoodie-server/**/*-test.js'",
"start": "hoodie",
"build": "npm run -s build-app && npm run -s build-visualization",
"build-app": "webpack --config app/webpack.config.js",
"build-visualization": "webpack --config visualization/webpack.config.js",
"app": "webpack-dev-server --config app/webpack.config.js --host 0.0.0.0",
"visualization": "webpack-dev-server --config visualization/webpack.config.js --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gr2m/voice-of-interconnect.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gr2m/voice-of-interconnect/issues"
},
"homepage": "https://github.com/gr2m/voice-of-interconnect#readme",
"dependencies": {
"fluent-ffmpeg": "^2.1.0",
"hoodie": "^28.0.0",
"moment": "^2.17.1",
"rollbar": "^0.6.5",
"watson-developer-cloud": "^2.21.1"
},
"hoodie": {
"loglevel": "verbose",
"public": "dist"
},
"engines": {
"node": "6.9.x"
},
"devDependencies": {
"@hoodie/client": "^10.0.0",
"autoprefixer": "^6.7.7",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"d3": "^4.7.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"nyc": "^10.1.2",
"offline-plugin": "^4.6.1",
"postcss-loader": "^1.3.3",
"pouchdb-adapter-http": "^6.1.2",
"pouchdb-adapter-memory": "^6.1.2",
"pouchdb-browser": "^6.1.2",
"pouchdb-core": "^6.1.2",
"pouchdb-mapreduce": "^6.1.2",
"pouchdb-replication": "^6.1.2",
"sass-loader": "^6.0.2",
"simple-mock": "^0.7.3",
"standard": "^8.6.0",
"style-loader": "^0.13.1",
"tap": "^10.3.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}