forked from k0kubun/Nocturn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
{
"name": "Nocturn",
"description": "Multi-platform Twitter Client built with React, Redux and Electron",
"version": "1.6.6",
"main": "app/main.js",
"repository": "https://github.com/k0kubun/Nocturn",
"author": {
"name": "Takashi Kokubun",
"email": "[email protected]",
"url": "https://github.com/k0kubun"
},
"license": "MIT",
"build": {
"productName": "Nocturn",
"linux": {
"target": [
"snap"
]
}
},
"scripts": {
"build": "npm run setup && cross-env NODE_ENV=production npm run compile",
"compile": "rm -rf app && gulp compile",
"decaf": "node script/decaf.js",
"package": "node script/package.js && npm run zip",
"setup": "gulp bower && gulp compile-fonts",
"start": "cross-env NODE_ENV=development npm run compile && electron .",
"zip": "node script/zip.js"
},
"dependencies": {
"autolinker": "^0.19.0",
"big-integer": "^1.6.28",
"hls.js": "^0.6.6",
"moment": "^2.11.2",
"node-sass": "^4.9.0",
"node-twitter-api": "^1.6.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1",
"twitter": "^1.2.5"
},
"devDependencies": {
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-inline-environment-variables": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"bower": "^1.8.4",
"cross-env": "^1.0.7",
"decafjs": "^0.3.1",
"electron": "1.3.6",
"electron-builder": "^14.5.3",
"electron-packager": "^12.1.0",
"glob": "^7.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-bower": "^0.0.10",
"gulp-sass": "^2.2.0",
"shelljs": "^0.6.0"
}
}