-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "punk",
"productName": "Punk",
"version": "0.4.2",
"description": "Alternative cross-platform Steam client for desktop",
"main": "dist/js/main.js",
"author": {
"name": "Michael Scholtz",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scholtzm/punk.git",
"updateUrl": "https://api.github.com/repos/scholtzm/punk/releases"
},
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"start": "cross-env NODE_ENV=development electron .",
"start:prod": "cross-env NODE_ENV=production electron .",
"watch": "gulp watch",
"package": "npm run build && gulp package"
},
"dependencies": {
"classnames": "^2.2.5",
"flux": "^3.1.2",
"font-awesome": "^4.7.0",
"lodash.omit": "^4.5.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"node-notifier": "^5.1.2",
"photon": "github:connors/photon#5a1a8ef12fa9e16559ac090baef667707399a1c3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-linkify": "^0.2.1",
"request": "^2.81.0",
"semver": "^5.3.0",
"shortid": "^2.2.8",
"steamid": "^1.1.0",
"vapor": "^1.3.0"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "1.6.14",
"electron-packager": "^8.7.1",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.0.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-sass": "^3.1.0",
"gulp-zip": "^4.0.0",
"yargs": "^9.0.1"
},
"private": true
}