-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 993 Bytes
/
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
{
"name": "beatmix",
"version": "1.3.0",
"description": "BeatMix - Artist Mixer. Your favourite artists in one playlist within seconds",
"author": "8BitJonny",
"homepage": "https://beatmix.app",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"predeploy": "npm run generate",
"deploy": "gh-pages -t -d dist"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.3",
"@nuxtjs/tailwindcss": "4.0.0",
"axios-retry": "^3.1.9",
"cookie-parser": "^1.4.5",
"cross-env": "^5.2.0",
"crypto-js": "^4.0.0",
"express": "^4.16.4",
"gh-pages": "^2.2.0",
"nuxt": "^2.15.3",
"querystring": "^0.2.0",
"v-click-outside": "^3.1.2",
"vue-multiselect": "^2.1.6",
"vue-notification": "^1.3.20"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}