This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
146 lines (146 loc) · 4.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "devrantron",
"version": "0.6.0",
"main": "./app/build/app.js",
"description": "An open source cross platform desktop application for devRant",
"scripts": {
"clear": "rimraf dist",
"ci:all": "npm-run-all -s ci:lint ci:coverage ci:build ci:package",
"ci:build": "cross-env NODE_ENV=production webpack --progress --color --profile --config ./configs/webpack.prod.config.js",
"ci:coverage": "echo ci:coverage",
"ci:deploy": "npm run package",
"ci:lint": "npm run lint",
"ci:package": "npm run package:dir",
"ci:test": "npm run test -- --runInBand",
"contribute": "npm-run-all -s lint test",
"dev": "concurrently -k \"npm run server\" \"npm run start\" ",
"lint": "eslint --ext .jsx,.js app/src/main",
"package:all": "npm-run-all package:lin package:mac package:win",
"package:dir": "build --dir",
"package:lin": "build --linux",
"package:mac": "build --mac dmg",
"package:win": "build --win --x64",
"package": "build",
"postinstall": "install-app-deps",
"server": "webpack-dev-server --color --config configs/webpack.dev.config.js",
"start": "cross-env NODE_ENV=development electron app/src/main/app.js",
"start:app": "electron app/build/app.js",
"test": "jest -c configs/jest.json"
},
"license": "MIT",
"build": {
"productName": "devRantron",
"appId": "de.zerotask.theclassic",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"win": {
"target": "NSIS"
},
"linux": {
"target": [
"deb",
"AppImage"
]
},
"directories": {
"output": "release"
}
},
"author": {
"name": "Tahnik Mustasin",
"email": "[email protected]",
"url": "https://www.tahnik.com/"
},
"contributors": [
{
"name": "Hampus Lundqvist Norman",
"url": "https://rekkyrek.se"
},
{
"name": "Sven Lechner",
"url": "https://sirwindfield.github.io"
}
],
"keywords": [
"Electron",
"react"
],
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.1",
"babel-loader": "^7.0.0",
"babel-preset-babili": "^0.0.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"compression-webpack-plugin": "^0.4.0",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"electron": "^1.6.8",
"electron-builder": "^19.13.0",
"electron-builder-squirrel-windows": "^19.15.0",
"env-paths": "^1.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"react-addons-test-utils": "^15.5.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.5.4",
"redux-logger": "^3.0.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.4.5",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"auto-launch": "^5.0.1",
"babel-polyfill": "^6.23.0",
"deepmerge": "^1.5.0",
"electron-devtools-installer": "^2.2.0",
"electron-updater": "^2.7.1",
"fast-deep-equal": "^1.0.0",
"jquery": "^3.2.1",
"json-schema-traverse": "^0.3.1",
"node-notifier": "^5.1.2",
"prop-types": "^15.5.10",
"rantscript": "^1.2.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-transition-group": "^1.1.3",
"react-twemoji": "0.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"semver-compare": "^1.0.0",
"twemoji": "^2.2.5"
}
}