-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "dot-editor",
"version": "0.1.0",
"description": "Easily edit & preview graphs written in the DOT language",
"keywords": [
"DOT",
"graphviz",
"dag",
"graph"
],
"license": "GPL-3.0",
"homepage": "https://github.com/apoco/dot-editor#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/apoco/dot-editor.git"
},
"bugs": {
"url": "https://github.com/apoco/dot-editor/issues"
},
"author": "Jacob Page <[email protected]>",
"main": "./src/main",
"dependencies": {
"classnames": "^2.2.6",
"electron-store": "^2.0.0",
"react": "^16.7.0",
"react-ace": "^6.2.0",
"react-dom": "^16.7.0",
"rxjs": "^6.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/electron-store": "^1.3.0",
"@types/node": "^12.20.15",
"@types/react": "^17.0.11",
"@types/react-dom": "^16.0.6",
"@types/uuid": "^3.4.3",
"electron": "^9.4.4",
"electron-react-devtools": "^0.5.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"typescript": "^4.3.2"
},
"scripts": {
"build": "npm run build:ts",
"start": "npm run build && npm run start:electron",
"build:ts": "tsc",
"watch:ts": "tsc --watch",
"start:electron": "electron ."
}
}