-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.56 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.56 KB
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
{
"private": true,
"main": "./build/main-process.js",
"scripts": {
"build": "yarn build:clean && yarn build:webpack && yarn build:iconset && yarn build:package",
"build:dev": "yarn build:webpack --watch",
"build:clean": "rm -rf build",
"build:webpack": "webpack --config=cfg/webpack.config.babel.js",
"build:iconset": "svgexport src/assets/iconset.json && mv src/assets/Wings.iconset build/Wings.iconset && iconutil -c icns build/Wings.iconset && rm -rf build/Wings.iconset",
"build:package": "electron-packager . Wings --asar --overwrite --icon=build/Wings.icns",
"lint": "eslint -c=cfg/eslintrc.json --ignore-path=.gitignore .",
"prettier": "prettier 'src/**/*.{js,json,css}' 'cfg/**/*.{js,json}' README.md package.json",
"format": "yarn prettier --write",
"prettier:ci": "yarn prettier --list-different",
"test": "jest --rootDir=./ --config=./cfg/jest/main-config.js",
"test:only": "jest --rootDir=./ --config=cfg/jest/test-config.js",
"start": "electron build/main-process.js"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"acorn-jsx": "^4.0.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"bluebird": "^3.5.0",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^5.0.2",
"coveralls": "^2.13.1",
"csp-html-webpack-plugin": "^3.0.1",
"css-loader": "^2.1.1",
"dynamic-css-properties": "^0.1.2",
"electron": "4.1.4",
"electron-packager": "^13.1.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-hooks": "^1.6.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-raw-loader": "^1.0.1",
"jest-runner-eslint": "^0.3.0",
"jest-runner-prettier": "^0.2.0",
"lodash.debounce": "^4.0.8",
"lodash.defaultsdeep": "^4.6.0",
"mini-css-extract-plugin": "^0.6.0",
"prettier": "^1.17.0",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"react-test-renderer": "^16.0.0",
"recompose": "^0.26.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"svgexport": "^0.3.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-export-namespace-from",
[
"module-resolver",
{
"root": [
"./src"
]
}
]
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest-runner-eslint": {
"cliOptions": {
"config": "cfg/eslintrc.json",
"ignorePath": ".gitignore",
"parser": "babel-eslint"
}
}
}