This repository was archived by the owner on Mar 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.97 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
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
{
"name": "git-fiend",
"version": "0.0.1",
"description": "Language experiment.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch --colors --progress",
"make": "webpack --colors --progress",
"start": "electron output-code/main.js",
"debug": "nodemon --exec electron output-code/main.js --dev",
"pack": "build --dir",
"dist": "build"
},
"author": "Toby Suggate <sugto555@gmail.com>",
"license": "ISC",
"build": {
"appId": "com.tsuggate.gitfiend",
"mac": {
"category": "Utility"
},
"files": [
"distr",
"node_modules",
"test-files",
"resources"
]
},
"devDependencies": {
"@types/commander": "^2.9.0",
"@types/electron-devtools-installer": "^2.0.2",
"@types/escodegen": "0.0.6",
"@types/esprima": "^2.1.33",
"@types/fs-extra": "^2.1.0",
"@types/node": "^7.0.5",
"@types/react": "^15.0.23",
"@types/react-dom": "^15.5.0",
"@types/underscore": "^1.7.36",
"@types/webpack": "^3.0.13",
"commander": "^2.9.0",
"css-loader": "^0.28.0",
"electron": "^1.7.9",
"electron-builder": "^17.5.0",
"electron-devtools-installer": "^2.2.1",
"electron-window-state": "^4.1.1",
"extract-text-webpack-plugin": "^2.1.0",
"fs-extra": "^2.1.2",
"js-beautify": "^1.6.12",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"nodemon": "^1.10.2",
"react": "^15.5.4",
"react-ace": "^4.2.1",
"react-dom": "^15.5.4",
"redux": "^3.6.0",
"style-loader": "^0.16.0",
"ts-loader": "^2.0.0",
"ts-node": "^3.3.0",
"typescript": "2.3.4",
"underscore": "^1.8.3",
"webpack": "^2.4.1"
},
"dependencies": {
"@types/extract-text-webpack-plugin": "^3.0.0",
"@types/moment": "^2.13.0",
"@types/nodegit": "^0.18.3",
"@types/react-redux": "4.4.40",
"moment": "^2.19.1",
"nodegit": "^0.20.2",
"react-redux": "^5.0.5"
}
}