github-desktop/package.json

87 lines
3.1 KiB
JSON
Raw Normal View History

2016-05-11 16:16:32 +00:00
{
2016-05-11 16:43:54 +00:00
"repository": {
2016-05-16 19:00:56 +00:00
"type": "git",
"url": "https://github.com/desktop/desktop.git"
2016-05-11 16:43:54 +00:00
},
"description": "The People's Glorious GitHub Client's build dependencies",
2016-05-11 16:16:32 +00:00
"scripts": {
"test:integration": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 mocha --require ts-node/register app/test/integration/*.ts",
"test:unit": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 electron-mocha --renderer --require ts-node/register app/test/*.ts app/test/*.tsx",
"test": "npm run test:unit && npm run test:integration",
2016-08-03 18:00:48 +00:00
"postinstall": "cd app && npm install && cd .. && git submodule update --recursive --init",
2016-07-27 13:41:39 +00:00
"start": "node script/start",
"compile:dev": "cross-env NODE_ENV=development webpack --config app/webpack.development.js",
"compile:prod": "cross-env NODE_ENV=production webpack --config app/webpack.production.js",
"build:dev": "npm run compile:dev && cross-env NODE_ENV=development node script/build",
"build:prod": "npm run compile:prod && cross-env NODE_ENV=production node script/build",
2016-05-25 15:12:13 +00:00
"package": "node script/package",
"clean": "rimraf build",
2016-05-27 14:14:27 +00:00
"rebuild:dev": "npm run clean && npm run build:dev",
"rebuild:prod": "npm run clean && npm run build:prod",
"lint": "tslint ./app/src/**/*.ts ./app/src/**/*.tsx ./app/test/**/*.ts ./app/test/**/*.tsx"
2016-05-11 16:16:32 +00:00
},
"author": "",
"license": "MIT",
"engines": {
"node": ">= 6",
"npm": ">= 3"
2016-05-16 21:22:43 +00:00
},
"dependencies": {
2016-05-25 20:49:06 +00:00
"aws-sdk": "^2.3.15",
2016-05-11 16:16:32 +00:00
"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",
"chai-as-promised": "^5.3.0",
"cross-env": "^1.0.8",
2016-06-16 17:21:57 +00:00
"css-loader": "^0.23.1",
2016-08-23 00:30:13 +00:00
"electron-mocha": "3.0.4",
"electron-packager": "7.7.0",
"electron": "1.3.3",
"electron-winstaller": "^2.3.0",
2016-05-11 16:16:32 +00:00
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
2016-05-16 19:00:56 +00:00
"fs-extra": "^0.30.0",
"got": "^6.3.0",
"html-webpack-plugin": "^2.21.0",
2016-05-11 16:16:32 +00:00
"mocha": "^2.4.5",
2016-06-16 17:21:57 +00:00
"node-sass": "^3.7.0",
2016-05-27 18:00:25 +00:00
"react-transform-hmr": "^1.0.4",
2016-06-07 16:39:03 +00:00
"request": "^2.72.0",
"rimraf": "^2.5.2",
2016-06-16 17:21:57 +00:00
"sass-loader": "^3.2.0",
"spectron": "^3.3.0",
2016-06-16 17:21:57 +00:00
"style-loader": "^0.13.1",
2016-06-15 17:38:56 +00:00
"to-camel-case": "^1.0.0",
2016-05-11 16:16:32 +00:00
"ts-loader": "^0.8.2",
"ts-node": "^1.3.0",
2016-07-28 14:12:28 +00:00
"tslint": "^3.14.0",
2016-07-11 18:53:36 +00:00
"typescript": "beta",
2016-07-28 14:12:33 +00:00
"vrsource-tslint-rules": "^0.12.0",
2016-05-11 16:16:32 +00:00
"webpack": "^1.12.15",
"webpack-dev-middleware": "^1.6.1",
2016-05-27 18:00:25 +00:00
"webpack-hot-middleware": "^2.10.0",
"webpack-target-electron-renderer": "^0.4.0",
"xml2js": "^0.4.16"
2016-08-03 18:00:26 +00:00
},
"devDependencies": {
"@types/chai": "^3.4.30",
"@types/electron": "^1.3.15",
"@types/electron-window-state": "^2.0.27",
"@types/event-kit": "^1.2.28",
"@types/keytar": "^3.0.28",
"@types/mocha": "^2.2.29",
"@types/moment": "^2.11.29",
"@types/node": "^6.0.31",
2016-08-23 13:57:10 +00:00
"@types/react": "0.14.28",
2016-08-03 18:00:26 +00:00
"@types/react-addons-test-utils": "^0.14.14",
"@types/react-dom": "^0.14.14",
"@types/whatwg-fetch": "0.0.28"
2016-05-11 16:16:32 +00:00
}
}