-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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
{
"name": "@streammedev/partner-example-app",
"version": "1.0.0",
"description": "An example app for Stream.me Partners",
"main": "index.js",
"keywords": [
"example",
"streamme",
"partners"
],
"author": "StreamMe",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git@github.com:StreamMeDev/partner-example-app.git"
},
"scripts": {
"start": "npm run babel && electron .",
"test": "npm run babel && happiness && mocha",
"babel": "babel src -d lib",
"sass": "node-sass --output-style expanded --include-path node_modules --source-map css/main.css.map sass/main.scss css/main.css"
},
"optionalDependencies": {
"@streamme/style-driver": "0.0.5"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"electron-prebuilt": "^1.2.0",
"happiness": "^6.0.7",
"mocha": "^2.5.3",
"node-sass": "^3.7.0"
},
"dependencies": {
"@streammedev/flyout": "0.0.1",
"clipboard": "^1.5.10",
"lodash.get": "^4.3.0",
"mkdirp": "^0.5.1",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-dom": "^15.1.0"
}
}