-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.1 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
{
"private": true,
"name": "cloudmesh-javascript",
"description": "An interface for Cloudmesh.",
"version": "0.1.9-alpha",
"author": "Josh Goodman <[email protected]>",
"contributors": [
"Akshay Gupta",
"Gregor von Laszewski <[email protected]>"
],
"main": "app/background.js",
"scripts": {
"predev": "yarnpkg run format",
"dev": "nextron",
"prebuild": "yarnpkg run format",
"build": "nextron build",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux",
"postinstall": "electron-builder install-app-deps",
"format": "prettier --write \"**/*.{js,css}\"",
"test": "jest"
},
"dependencies": {
"@devexpress/dx-react-core": "^2.6.2",
"@devexpress/dx-react-grid": "^2.6.2",
"@devexpress/dx-react-grid-material-ui": "^2.6.2",
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"electron-serve": "^1.0.0",
"electron-store": "^5.1.1",
"extract-json-from-string": "^1.0.1",
"formik": "^2.1.4",
"js-yaml": "^3.13.1",
"markdown-to-jsx": "^6.11.1",
"node-yaml": "^4.0.1",
"p-queue": "^6.3.0",
"python-shell": "^1.0.8",
"react-json-tree": "^0.11.2",
"react-markdown": "^4.3.1",
"typeface-roboto": "^0.0.75"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-spawn": "^7.0.1",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"jest": "^25.5.3",
"next": "^9.3.6",
"nextron": "^5.14.5",
"prettier": "^2.0.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
}
}