forked from hql287/Manta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.58 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
{
"name": "Manta",
"homepage": "https://manta.life",
"productName": "Manta",
"version": "1.1.2",
"license": "GPL-3.0",
"description": "Flexible invoicing desktop app with beautiful & customizable templates",
"author": {
"name": "Hung Q. Le",
"email": "[email protected]"
},
"main": "app.js",
"scripts": {
"start": "electron .",
"dev": "webpack-dev-server",
"build": "webpack --env.production",
"test": "jest",
"test:watch": "jest --watch",
"dist:linux": "electron-builder --linux",
"dist:win": "electron-builder --win",
"dist": "electron-builder -mwl",
"release:linux": "yarn run build && yarn run dist:linux",
"release:win": "yarn run build && yarn run dist:win",
"release": "yarn run build && yarn run dist",
"lint": "find . -name \"*.js\" -o -name \"*.jsx\" | grep -v -f .gitignore | xargs eslint",
"prettier:base": "prettier --write",
"prettify": "find . -name \"*.js\" -o -name \"*.jsx\" | grep -v -f .gitignore | xargs npm run prettier:base",
"lint-staged": "lint-staged"
},
"dependencies": {
"date-fns": "^1.28.5",
"dotenv": "^4.0.0",
"electron-is-dev": "^0.3.0",
"electron-settings": "^3.1.2",
"electron-updater": "^2.18.2",
"glob": "^7.1.2",
"is-svg": "^2.1.0",
"jimp": "^0.2.28",
"moment": "^2.20.1",
"pouchdb-browser": "6.2.0",
"rc-progress": "^2.2.5",
"react": "^16.2.0",
"react-addons-shallow-compare": "^15.6.2",
"react-beautiful-dnd": "^2.4.1",
"react-color": "^2.13.8",
"react-dates": "^12.6.0",
"react-dnd": "^2.5.3",
"react-dnd-html5-backend": "^2.5.3",
"react-dom": "^16.2.0",
"react-motion": "^0.5.1",
"react-redux": "^5.0.6",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"reselect": "^3.0.1",
"styled-components": "^2.4.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-styled-components": "^1.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.1.3",
"devtron": "^1.4.0",
"duplicate-package-checker-webpack-plugin": "^1.2.6",
"electron": "^1.7.10",
"electron-builder": "^19.52.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"faker": "^4.1.0",
"jest": "^22.0.4",
"jest-styled-components": "^4.6.0",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^16.2.0",
"redux-logger": "^3.0.6",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dashboard": "^1.0.0",
"webpack-dev-server": "^2.10.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.jsx?": [
"npm run prettier:base",
"eslint",
"git add"
]
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": true
}
}