forked from dgadelha/Portugol-Webstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "portugol-webstudio",
"version": "1.0.0",
"description": "IDE online para o Portugol",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --rs --watch 'src/**' -T src/index.ts",
"start": "node -r source-map-support/register index.js",
"eslint:fix": "eslint --fix '**/*.{t,j}s'",
"eslint:check": "eslint '**/*.{t,j}s'",
"prettier:fix": "prettier --write 'src/**/*.{t,j}s'",
"prettier:check": "prettier --check 'src/**/*.{t,j}s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgadelha/Portugol-Webstudio.git"
},
"keywords": [
"portugol",
"webstudio"
],
"author": "Douglas Gadêlha <[email protected]>",
"contributors": [
"Guilherme Scaranse de Castro <[email protected]>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dgadelha/Portugol-Webstudio/issues"
},
"homepage": "https://github.com/dgadelha/Portugol-Webstudio#readme",
"dependencies": {
"adm-zip": "^0.5.1",
"axios": "^0.21.0",
"ced": "^1.0.0",
"express": "^4.17.1",
"iconv-lite": "^0.6.2",
"ini": "^1.3.6",
"jstree": "^3.3.10",
"morgan": "^1.10.0",
"node-pty": "^0.9.0",
"request": "^2.88.2",
"socket.io": "^3.0.3",
"source-map-support": "^0.5.19",
"strip-ansi": "^6.0.0",
"twig": "^1.15.4"
},
"devDependencies": {
"@cubos/eslint-config": "^1.0.420111",
"@types/adm-zip": "^0.4.33",
"@types/express": "^4.17.9",
"@types/ini": "^1.3.30",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.10",
"eslint": "^7.14.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
}
}