-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 KB
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
{
"version": "0.0.0",
"private": true,
"name": "hackathon22spring16.tmp",
"description": "traP hackathon 2022 spring 16",
"repository": {
"type": "git",
"url": "https://github.com/hackathon-22-spring-16/frontend.git"
},
"scripts": {
"build": "yarn lezer-gen && nuxi build",
"dev": "nuxi dev --port 8080",
"generate": "nuxi generate",
"preview": "nuxi preview",
"start": "nuxi start",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts,.vue .",
"lint:prettier": "prettier '**/*.{js,ts,vue}' --check --ignore-path .gitignore",
"fix": "run-p fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"lezer-gen": "lezer-generator ./utils/language/syntax.grammar -o ./utils/language/output/syntax.js"
},
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@mdi/font": "^6.7.96",
"@mdi/js": "^6.7.96",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/vivus": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.1",
"nuxt": "3.0.0-rc.3",
"prettier": "^2.6.2",
"typescript": "^4.7.3",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": "^17.3.1"
},
"dependencies": {
"@codemirror/language": "^6.0.0",
"@types/codemirror": "^5.60.5",
"axios": "^0.27.2",
"codemirror": "^6.0.0",
"particles.vue3": "^2.0.6",
"sass": "^1.52.3",
"tsparticles": "^2.0.6",
"vivus": "^0.4.6",
"vue-codemirror": "^6.0.0",
"vuetify": "3.0.0-beta.3"
}
}