forked from desktop/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.19 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
{
"repository": {
"type": "git",
"url": "https://github.com/desktop/desktop.git"
},
"description": "The People's Glorious GitHub Client's build dependencies",
"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",
"postinstall": "cd app && npm install && cd .. && git submodule update --recursive --init",
"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",
"package": "node script/package",
"clean": "rimraf build",
"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\""
},
"author": "",
"license": "MIT",
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"dependencies": {
"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",
"chai-as-promised": "^5.3.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"electron": "1.3.4",
"electron-mocha": "3.0.5",
"electron-packager": "7.7.0",
"electron-winstaller": "^2.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^0.30.0",
"got": "^6.3.0",
"html-webpack-plugin": "^2.21.0",
"mocha": "^3.0.2",
"node-sass": "^3.7.0",
"react-transform-hmr": "^1.0.4",
"request": "^2.72.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"spectron": "^3.3.0",
"style-loader": "^0.13.1",
"to-camel-case": "^1.0.0",
"ts-loader": "^0.8.2",
"ts-node": "^1.3.0",
"tslint": "^3.14.0",
"typescript": "^2.0.3",
"vrsource-tslint-rules": "^0.12.0",
"webpack": "^1.12.15",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-target-electron-renderer": "^0.4.0",
"xml2js": "^0.4.16"
},
"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",
"@types/react": "^0.14.34",
"@types/react-addons-test-utils": "^0.14.14",
"@types/react-codemirror": "^0.2.4",
"@types/react-dom": "^0.14.14",
"@types/whatwg-fetch": "0.0.28"
}
}