This repository was archived by the owner on Feb 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.37 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.37 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
{
"name": "webcodesk",
"description": "Webcodesk - a rapid development tool for React Web applications",
"author": {
"name": "Oleksandr (Alex) Pustovalov",
"email": "apustovalov@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/webcodesk/webcodesk-app.git"
},
"version": "1.0.0",
"private": false,
"license": "MIT",
"dependencies": {
"chokidar": "2.0.4",
"fix-path": "2.1.0",
"fs-extra": "7.0.0",
"ps-tree": "1.2.0",
"request": "2.88.0",
"tar-fs": "2.0.0",
"zlib": "1.0.5"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-syntax-typescript": "7.2.0",
"@babel/preset-react": "7.0.0",
"@material-ui/core": "3.7.1",
"@material-ui/icons": "3.0.1",
"@webcodesk/react-scripts": "2.1.11",
"axios": "0.18.0",
"codemirror": "5.44.0",
"cross-env": "5.2.0",
"d3": "5.7.0",
"electron": "4.0.1",
"electron-builder": "20.31.3",
"graphlib": "2.1.5",
"gulp": "4.0.0",
"gulp-javascript-obfuscator": "1.1.5",
"jsonwebtoken": "8.4.0",
"localforage": "1.7.3",
"lodash": "4.17.11",
"markdown-it": "8.4.2",
"minimatch": "3.0.4",
"notistack": "0.4.1",
"prettier": "1.15.2",
"react": "16.6.3",
"react-codemirror2": "5.1.0",
"react-dom": "16.6.3",
"react-image-crop": "6.0.18",
"react-motion": "0.5.2",
"react-select": "2.4.2",
"react-split-pane": "0.1.85",
"sequential-task-queue": "1.2.1",
"styled-components": "4.1.3",
"styled-css-grid": "1.2.0",
"typeface-roboto": "0.0.54",
"typescript": "3.2.2"
},
"scripts": {
"start": "cross-env NODE_PATH=./src BROWSER=none react-scripts start",
"build": "yarn run cross-env GENERATE_SOURCEMAP=false NODE_PATH=./src react-scripts build && yarn run obfuscate",
"test": "cross-env react-scripts test --env=jsdom --modulePaths=src",
"eject": "cross-env react-scripts eject",
"electron": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"electron-dist": "cross-env electron .",
"dist": "yarn run build && build",
"obfuscate": "gulp --gulpfile ./gulpfile.js build"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "./",
"main": "build/electron.js",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}