forked from desktop/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.2 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
{
"repository": {
"type": "git",
"url": "https://github.com/desktop/desktop.git"
},
"description": "GitHub Desktop build dependencies",
"scripts": {
"test:integration": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 mocha -t 10000 --compilers ts:ts-node/register,tsx:ts-node/register app/test/integration/*.ts",
"test:unit": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 electron-mocha -t 10000 --renderer --compilers ts:ts-node/register,tsx:ts-node/register --require ./app/test/globals.ts app/test/unit/*.ts app/test/unit/git/*.ts app/test/unit/progress/*.ts app/test/unit/main-process/* app/test/unit/*.tsx",
"test": "npm run test:unit && npm run test:integration",
"test:setup": "node script/test-setup",
"test:review": "node script/test-review",
"postinstall": "cd app && npm install && cd .. && git submodule update --recursive --init && npm run compile:tslint",
"start": "cross-env NODE_ENV=development node script/start",
"start:prod": "cross-env NODE_ENV=production node script/start",
"debug": "cross-env NODE_ENV=development node script/debug",
"compile:dev": "cross-env NODE_ENV=development parallel-webpack --config app/webpack.development.js",
"compile:prod": "cross-env NODE_ENV=production parallel-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",
"package": "node script/package",
"clean:tslint": "rimraf tslint-rules/*.js",
"compile:tslint": "tsc -p tslint-rules",
"lint": "npm run compile:tslint && tslint \"./app/src/**/*.ts\" \"./app/src/**/*.tsx\" \"./app/test/**/*.ts\" \"./app/test/**/*.tsx\"",
"publish": "node script/publish",
"clean-slate": "rimraf out node_modules app/node_modules && npm install",
"rebuild-hard:dev": "npm run clean-slate && npm run build:dev",
"rebuild-hard:prod": "npm run clean-slate && npm run build:prod"
},
"author": {
"name": "GitHub, Inc.",
"email": "[email protected]",
"url": "https://desktop.github.com/"
},
"license": "MIT",
"engines": {
"node": ">= 7",
"npm": ">= 4"
},
"dependencies": {
"awesome-typescript-loader": "^3.1.2",
"aws-sdk": "^2.23.0",
"babel-core": "^6.24.1",
"babel-webpack-plugin": "^0.1.1",
"babili": "0.0.12",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-datetime": "^1.4.1",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^3.2.3",
"css-loader": "^0.26.2",
"electron": "1.6.7",
"electron-mocha": "3.3.0",
"electron-packager": "8.6.0",
"electron-winstaller": "2.5.2",
"express": "^4.15.0",
"extract-text-webpack-plugin": "^2.1.0",
"fs-extra": "^2.1.2",
"got": "^6.3.0",
"html-webpack-plugin": "^2.28.0",
"klaw-sync": "^1.1.2",
"legal-eagle": "0.15.0",
"mocha": "^3.0.2",
"node-native-loader": "^1.1.1",
"node-sass": "^4.5.2",
"parallel-webpack": "^1.6.1",
"request": "^2.72.0",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.3",
"spectron": "^3.6.0",
"style-loader": "^0.16.1",
"to-camel-case": "^1.0.0",
"ts-loader": "^2.0.3",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "2.3.2",
"vrsource-tslint-rules": "^0.12.0",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"@types/chai": "^3.4.30",
"@types/chai-datetime": "0.0.30",
"@types/classnames": "^0.0.32",
"@types/codemirror": "0.0.38",
"@types/electron": "1.4.38",
"@types/electron-window-state": "^2.0.28",
"@types/event-kit": "^1.2.28",
"@types/fs-extra": "2.1.0",
"@types/keytar": "^4.0.0",
"@types/mocha": "^2.2.29",
"@types/node": "^6.0.31",
"@types/react": "15.0.23",
"@types/react-addons-test-utils": "^0.14.17",
"@types/react-dom": "^15.5.0",
"@types/react-transition-group": "^1.1.0",
"@types/react-virtualized": "^9.7.0",
"@types/ua-parser-js": "^0.7.30",
"@types/uuid": "^2.0.29",
"@types/winston": "^2.2.0"
}
}