-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxi dev",
"generate": "nuxi generate",
"preview": "nuxi preview",
"postinstall": "nuxi prepare",
"deploy": "gh-pages --dotfiles -d .output/public",
"lint": "eslint --ext .ts,.js,.vue, --ignore-path .gitignore .",
"go": "yarn generate && yarn deploy"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.6.6",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"gh-pages": "^4.0.0",
"nuxt": "^3.1.2",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@tensorflow/tfjs": "^4.11.0"
}
}