This repository has been archived by the owner on Jun 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "hain",
"main": "app/main/bootstrap.js",
"scripts": {
"start": "node ./run",
"dev": "gulp && node ./run",
"build": "gulp build-all",
"build-debian": "gulp build-debian",
"test": "eslint . --ext .js --ext .jsx && cd app && jest",
"tdd": "cd app && jest --watch",
"lint": "eslint . --ext .js --ext .jsx",
"lint-fix": "eslint . --ext .js --ext .jsx --fix"
},
"author": "Heejin Lee <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hainproject/hain.git"
},
"engines": {
"node": "^8.9.0",
"npm": "^5.6.0"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/node": "^8.9.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"del": "^2.2.0",
"electron": "^2.0.0",
"electron-packager": "^8.6.0",
"electron-winstaller": "^2.5.2",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-recommended": "^1.4.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-install": "^0.6.0",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.6.3",
"gulp-sourcemaps": "^2.5.1",
"gulp-util": "^3.0.7",
"gulp-zip": "^4.0.0",
"jest-cli": "12.1.1",
"prettier": "^1.12.1"
},
"optionalDependencies": {
"electron-installer-debian": "^0.3.0"
},
"dependencies": {}
}