-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "skullcandy",
"version": "1.0.0",
"description": "My grand Nuxt.js project",
"author": "bokismoki",
"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",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@nuxtjs/auth": "^4.8.5",
"@nuxtjs/axios": "^5.9.5",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.11",
"nuxt": "^2.11.0",
"tailwindcss-transitions": "^2.2.0",
"vue-notification": "^1.3.20"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^1.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"glob-all": "^3.2.1",
"nodemon": "^1.18.9",
"prettier": "^1.16.4",
"purgecss-webpack-plugin": "^1.6.0"
}
}