forked from Dangaki/Gals-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "web-gals",
"version": "2.0.0",
"description": "Versão Web do GALS - Gerador de Analisadores Léxico e Sintáticos",
"author": "Daniel Akira Nakamura Gullich <[email protected]> (https://github.com/Dangaki)",
"contributors": [
"Eduardo Alves da Silva <[email protected]> (https://github.com/edualvss)"
],
"homepage": "https://lia-univali.github.io/Web-GALS/",
"license": "GPL-3.0-only",
"keywords": [
"GALS",
"léxico",
"sintático",
"compilador",
"scanner",
"parser",
"compiler"
],
"repository": "github:lia-univali/Web-GALS",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"@types/prismjs": "^1.26.3",
"detect-file-encoding-and-language": "^2.4.0",
"hashmap": "^2.4.0",
"jszip": "^3.10.1",
"pinia": "^2.1.3",
"prismjs": "^1.29.0",
"splitpanes": "^3.1.5",
"ts-treemap": "^1.1.0",
"tslib": "^2.6.3",
"vue": "^3.3.4",
"vue-prism-editor": "^2.0.0-alpha.2",
"vue-toast-notification": "^3.1.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.0",
"@tsconfig/node18": "^2.0.1",
"@types/hashmap": "^2.3.1",
"@types/node": "^18.16.17",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^9.9.0",
"eslint-plugin-vue": "^9.27.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^4.5.3",
"vue-tsc": "^2.0.29"
}
}