-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
{
"name": "pascal-is-listening",
"version": "1.0.0",
"description": "What I'm listening to on spotify",
"author": "botmaster",
"private": true,
"scripts": {
"dev": "nodemon --watch api --exec \"nuxt\"",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"async-redis": "^2.0.0",
"express": "^4.17.2",
"fast-average-color": "^7.0.1",
"gsap": "^3.5.1",
"imagesloaded": "^5.0.0",
"nuxt": "^2.15"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"sass-loader": "^10.5.2"
}
}