forked from ChristianEdwardPadilla/ReacType
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
180 lines (180 loc) · 4.88 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "reactype",
"version": "3.0.0",
"description": "Prototyping tool for React/Typescript Applications.",
"main": "main.js",
"contributors": [
"Adam Singer",
"Charles Finocchiaro",
"Chelsey Fewer",
"Christian Padilla",
"Eliot Nguyen",
"Jesse Zuniga",
"Mitchel Severe",
"Natalie Vick",
"Sean Sadykoff",
"Shlomo Porges",
"Sophia Huttner",
"Tolga Mizrakci",
"Tony Ito-Cole"
],
"repository": {
"type": "git",
"url": "https://github.com/team-reactype/ReacType"
},
"build": {
"appId": "com.team-reactype.reactype",
"copyright": "Copyright © 2020",
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "sean.sadykoff@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": "",
"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",
"develop": "concurrently \"npm run dev\" \"npm run electron\""
},
"bin": {
"reactype": "./index.js"
},
"preferGlobal": true,
"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": "^4.2.1",
"@material-ui/icons": "^4.0.1",
"@material-ui/styles": "^4.9.6",
"@types/prettier": "^1.19.0",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.8",
"@types/react-syntax-highlighter": "^11.0.4",
"ace-builds": "^1.4.8",
"autoprefixer": "^9.0.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"cli-spinner": "^0.2.8",
"commander": "^2.17.1",
"concurrently": "^5.1.0",
"csstype": "^2.6.9",
"d3": "^5.9.2",
"electron-reload": "^1.4.0",
"enzyme": "^3.4.1",
"konva": "^4.1.6",
"localforage": "^1.7.2",
"lodash.throttle": "^4.1.1",
"material-table": "^1.25.2",
"prettier": "^1.19.1",
"prismjs": "^1.19.0",
"prop-types": "^15.6.2",
"react": "^16.13.0",
"react-ace": "^8.1.0",
"react-d3-tree": "^1.12.3",
"react-dom": "^16.4.1",
"react-draggable": "^3.0.5",
"react-konva": "^16.12.0-0",
"react-redux": "^5.0.7",
"react-simple-code-editor": "^0.11.0",
"react-sortable-tree": "^2.2.0",
"react-syntax-highlighter": "^10.2.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"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",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.1",
"css-loader": "^2.1.1",
"electron": "^2.0.7",
"electron-builder": "^20.44.4",
"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.13.1",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.20.3",
"typescript": "^3.4.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}