-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
126 lines (126 loc) · 4.79 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "oh-my-desk",
"version": "v2.1.0",
"description": "desktop widget application",
"main": "./build/main.prod.js",
"scripts": {
"start": "yarn start:renderer",
"start-devtools": "cross-env IS_DEVTOOLS=true yarn start",
"start:main": "cross-env NODE_ENV=development electron -r ./config/babel/babel.register.js ./app/main.js",
"start:renderer": "cross-env NODE_ENV=development node -r ./config/babel/babel.register.js ./node_modules/webpack-dev-server/bin/webpack-dev-server --config config/webpack/webpack.dev.config.js --hot --inline --watch",
"watch:main": "nodemon --exec \"yarn start:main\" --ext js --ignore build/ --ignore dist/ --ignore coverage/",
"build": "concurrently \"yarn build:page\" \"yarn build:electron\"",
"build:page": "cross-env NODE_ENV=production webpack --config ./config/webpack/webpack.prod.config.js",
"build:electron": "cross-env NODE_ENV=production webpack --config config/webpack/webpack.electron.js",
"build:page:watch": "cross-env NODE_ENV=production webpack --watch --config ./config/webpack/webpack.prod.config.js",
"package": "yarn build && build -c ./config/electron-builder.yml -mw",
"package:mac": "yarn build && build -c ./config/electron-builder.yml -m",
"package:win": "yarn build && build -c ./config/electron-builder.yml -w",
"package:release": "yarn build && build -c ./config/electron-builder.yml -mw -p always ",
"test": "jest --config ./config/jest/jest.config.js",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage",
"show:coverage": "yarn test:coverage && open ./coverage/lcov-report/index.html",
"e2e": "jest --config ./config/jest/jest.e2e.config.js",
"e2e:build": "cross-env NODE_ENV=test webpack --config ./config/webpack/webpack.prod.config.js",
"e2e:watch": "yarn e2e:build && yarn e2e -- --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "eslint app --ext .js,.jsx --config ./config/.eslintrc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -c config/lint-staged.config.js",
"pre-push": "yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahki/oh-my-desk.git"
},
"author": "hyunmoahn",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"concurrently": "^4.1.0",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"electron": "2.0.13",
"electron-builder": "^20.17.0",
"electron-react-devtools": "^0.5.3",
"electron-redux-devtools": "^0.3.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.5",
"nodemon": "^1.18.3",
"raw-loader": "^1.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"remote-redux-devtools": "^0.5.13",
"rimraf": "^2.6.3",
"spectron": "^5.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"auto-launch": "^5.0.5",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"css-loader": "^0.28.11",
"debounce": "^1.2.0",
"electron-builder-http": "^19.27.5",
"electron-updater": "^3.0.3",
"flux-standard-action": "^2.0.3",
"hoist-non-react-statics": "^2.5.5",
"html-webpack-plugin": "^3.2.0",
"immutable": "^3.8.2",
"is-url": "^1.2.4",
"menubar": "^5.2.3",
"moment": "^2.22.2",
"mousetrap": "^1.6.2",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-modal": "^3.4.5",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-svg-inline": "^2.1.1",
"redux": "^3.7.2",
"redux-actions": "^2.4.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.21.0",
"uuid": "^3.3.0",
"valid-url": "^1.0.9",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8"
}
}