-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.5 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
{
"name": "gitscratch",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "yarn run genmeta && nuxt",
"build": "yarn run build:scratch && yarn run build:connect && yarn run build:nuxt",
"build:scratch": "cd node_modules/scratch-gui && yarn install && yarn build",
"build:connect": "rimraf static/scratch/ && mv node_modules/scratch-gui/build/ static/scratch/",
"build:nuxt": "yarn run genmeta && nuxt build",
"analyze": "yarn run genmeta && nuxt build -a",
"start": "nuxt start",
"genmeta": "node gen-meta.js",
"lint": "eslint . --ignore-path .gitignore --ext .js,.vue --fix"
},
"dependencies": {
"@nuxtjs/auth-next": "^5.0.0-1648802546.c9880dc",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/vuetify": "git+https://github.com/UniScratch/vuetify-module.git#master",
"@nuxtjs/webpack-profile": "^0.1.0",
"highlight.js": "^11.6.0",
"marked": "^4.0.18",
"nuxt": "^2.15.8",
"nuxt-precompress": "^0.5.9",
"sanitize-html": "^2.7.1",
"scratch-gui": "git+https://github.com/UniScratch/uniscratch-gui.git#develop",
"vuetify-dialog": "git+https://github.com/UniScratch/vuetify-dialog.git#master"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"eslint": "^8.22.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^9.3.0",
"eslint-plugin-vuetify": "^1.1.0",
"hard-source-webpack-plugin": "^0.13.1",
"webpack-bundle-analyzer": "^4.5.0"
}
}