-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "forest-frontend",
"version": "1.0.0",
"description": "An open source linktree alternative",
"author": "Vincent Woltmann & Karl Beecken & Florian Fischer",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@nuxtjs/auth-next": "^5.0.0-1624817847.21691f1",
"@nuxtjs/axios": "^5.13",
"@nuxtjs/pwa": "^3.3.5",
"bulma-prefers-dark": "0.1.0-beta.0",
"node-sass": "^6.0.1",
"nuxt": "^2.15",
"nuxt-buefy": "^0.4.8",
"sass-loader": "^10.0.0",
"vue-class-component": "^7.2",
"vue-property-decorator": "^9.1.2"
},
"devDependencies": {
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@vue/test-utils": "^1.2.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.0.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.0",
"nuxt-purgecss": "^1.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.0",
"vue-jest": "^3.0.7"
}
}