forked from uqbar-project/wollok-ts-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "wollok-ts-cli",
"version": "0.0.1",
"description": "Wollok Command Line Interface",
"repository": "https://github.com/uqbar-project/wollok-ts-cli",
"license": "MIT",
"author": {
"name": "Uqbar Foundation",
"email": "[email protected]"
},
"main": "./build/index.js",
"scripts": {
"build": "rm -rf build/* && mkdir ./build && cp -r ./src/public ./build/public && tsc",
"watch": "npm run build -- -w",
"start": "electron ./build/index.js",
"pack": "electron-builder"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.2.0",
"cytoscape": "^3.15.2",
"express": "^4.18.1",
"globby": "^11.0.4",
"loglevel": "^1.8.0",
"p5": "^1.4.2",
"socket.io": "^4.5.1",
"wollok-ts": "^3.1.2"
},
"devDependencies": {
"@types/cytoscape": "^3.19.7",
"@types/express": "^4.17.13",
"@types/node": "^16.11.10",
"@types/p5": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"eslint": "^8.3.0",
"ts-node": "10.4.0",
"typescript": "4.5"
}
}