mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
69 lines
2.4 KiB
JSON
69 lines
2.4 KiB
JSON
{
|
|
"name": "desktop",
|
|
"productName": "GitHub",
|
|
"bundleID": "com.github.GitHubClient",
|
|
"companyName": "GitHub, Inc.",
|
|
"version": "0.0.1",
|
|
"main": "./app/main-process/main.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/desktop/desktop.git"
|
|
},
|
|
"description": "The People's Glorious GitHub Client",
|
|
"scripts": {
|
|
"test": "electron-mocha --renderer --require ts-node/register test/*.ts test/*.tsx",
|
|
"postinstall": "typings install",
|
|
"start-server": "node dev_server.js",
|
|
"start": "npm run build:dev && npm-run-all --parallel run start-server",
|
|
"run": "env NODE_ENV=development node script/run",
|
|
"compile:dev": "tsc && env NODE_ENV=development webpack --config webpack.development.js",
|
|
"compile:prod": "tsc && env NODE_ENV=production webpack --config webpack.production.js",
|
|
"build:dev": "npm run compile:dev && env NODE_ENV=development node script/build",
|
|
"build:prod": "npm run compile:prod && env NODE_ENV=production node script/build",
|
|
"package": "node script/package",
|
|
"clean": "rm -rf build",
|
|
"rebuild": "npm run clean && npm run build:dev",
|
|
"lint": "tslint ./src/**/*.ts ./src/**/*.tsx ./test/**/*.ts ./test/**/*.tsx"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"babel-runtime": "^6.6.1",
|
|
"octokat": "^0.5.0-beta.0",
|
|
"react": "^15.0.2",
|
|
"react-dom": "^15.0.2"
|
|
},
|
|
"debugDependencies": {
|
|
"react-transform-hmr": "^1.0.4",
|
|
"webpack-hot-middleware": "^2.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"aws-sdk": "^2.3.15",
|
|
"babel-core": "^6.7.6",
|
|
"babel-loader": "^6.2.4",
|
|
"babel-plugin-react-transform": "^2.0.2",
|
|
"babel-plugin-transform-runtime": "^6.8.0",
|
|
"babel-preset-es2015": "^6.6.0",
|
|
"babel-preset-react": "^6.5.0",
|
|
"babel-preset-react-hmre": "^1.1.1",
|
|
"babel-preset-stage-0": "^6.5.0",
|
|
"chai": "^3.5.0",
|
|
"electron-mocha": "2.1.0",
|
|
"electron-packager": "^7.0.1",
|
|
"electron-prebuilt": "^1.1.2",
|
|
"electron-winstaller": "^2.3.0",
|
|
"express": "^4.13.4",
|
|
"fs-extra": "^0.30.0",
|
|
"mocha": "^2.4.5",
|
|
"npm-run-all": "^1.8.0",
|
|
"react-addons-test-utils": "^15.0.2",
|
|
"ts-loader": "^0.8.2",
|
|
"ts-node": "^0.7.2",
|
|
"tslint": "^3.9.0",
|
|
"typescript": "^1.8.10",
|
|
"typings": "^0.7.12",
|
|
"webpack": "^1.12.15",
|
|
"webpack-dev-middleware": "^1.6.1",
|
|
"webpack-target-electron-renderer": "^0.4.0"
|
|
}
|
|
}
|