forked from hql287/Manta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.64 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
{
"name": "Manta",
"homepage": "https://manta.life",
"productName": "Manta",
"version": "1.0.0",
"license": "ISC",
"description": "Painless invoicing with 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"
},
"dependencies": {
"date-fns": "^1.28.5",
"dotenv": "^4.0.0",
"electron-is-dev": "^0.3.0",
"electron-settings": "^3.1.2",
"electron-updater": "^2.16.1",
"glob": "^7.1.2",
"is-svg": "^2.1.0",
"jimp": "^0.2.28",
"moment": "^2.18.1",
"pouchdb-browser": "6.2.0",
"react": "^16.0.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.0.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.2.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-styled-components": "^1.2.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.0.1",
"devtron": "^1.4.0",
"duplicate-package-checker-webpack-plugin": "^1.2.6",
"electron": "^1.7.9",
"electron-builder": "^19.42.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint-plugin-jest": "^21.2.0",
"faker": "^4.1.0",
"jest": "^21.2.1",
"jest-styled-components": "^4.6.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^16.0.0",
"redux-logger": "^3.0.6",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dashboard": "^1.0.0",
"webpack-dev-server": "^2.9.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
}
}