-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
141 lines (141 loc) · 4.03 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "react-proto",
"version": "1.0.0",
"description": "An application for prototyping React components.",
"main": "main.js",
"homepage": "https://cs-eevee.github.io/react-proto/",
"repository": {
"type": "git",
"url": "https://github.com/CS-Eevee/react-proto"
},
"build": {
"appId": "com.eevee.react-proto",
"copyright": "Copyright © 2018",
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "blessingebowe@gmail.com"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg"
},
"nsis": {
"createStartMenuShortcut": true,
"createDesktopShortcut": true,
"runAfterFinish": true
},
"win": {
"target": "nsis-web"
},
"files": [
"main.js",
"build"
],
"productName": "React-Proto",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
}
},
"scripts": {
"prestart": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"start": "cross-env NODE_ENV=production electron .",
"dev": "cross-env NODE_ENV=development webpack --config webpack.config.development.js",
"electron": "cross-env NODE_ENV=development electron .",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"build-bin": "electron-builder -mwl",
"test": "cross-env NODE_ENV=test jest",
"linter": "eslint src"
},
"bin": {
"react-proto": "./index.js"
},
"preferGlobal": true,
"contributors": [
"Blessing Ebowe <blessingebowe.repo@gmail.com> (https://www.linkedin.com/in/blessingebowe/)",
"Brian Taylor <brianwtaylor@protonmail.com> (https://www.linkedin.com/in/brianwtaylor/)",
"Erik Guntner <erikguntner@gmail.com> (https://www.linkedin.com/in/erik-guntner-9aa324b9/)"
],
"license": "MIT",
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy",
"electron": "<rootDir>/__mocks__/electron.js"
},
"setupFiles": [
"./src/setupTests.js"
]
},
"dependencies": {
"@material-ui/core": "^1.4.1",
"@material-ui/icons": "^2.0.0",
"autoprefixer": "^9.0.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"cli-spinner": "^0.2.8",
"commander": "^2.17.1",
"enzyme": "^3.4.1",
"konva": "^2.1.7",
"localforage": "^1.7.2",
"lodash.throttle": "^4.1.1",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-draggable": "^3.0.5",
"react-konva": "^1.7.12",
"react-redux": "^5.0.7",
"react-sortable-tree": "^2.2.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"electron": "^2.0.7",
"electron-builder": "^20.28.1",
"electron-devtools-installer": "^2.2.4",
"electron-installer-dmg": "^2.0.0",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"node-sass": "^4.9.2",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.20.3",
"webpack": "^4.4.0",
"webpack-cli": "^2.0.13"
}
}