-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 989 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
{
"name": "iota4earth.org",
"version": "0.0.1",
"description": "IOTΛ4Earth is an initiative to support projects and people who have a positive impact on our earth.",
"author": "huhn511",
"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",
"generate:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy:gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup",
"deploy": "npm run generate:gh-pages && npm run deploy:gh-pages"
},
"dependencies": {
"nuxt": "^2.0.0",
"express": "^4.16.4",
"element-ui": "^2.4.11",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0"
},
"devDependencies": {
"cross-env": "^5.2.1",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"push-dir": "^0.4.1",
"sass-loader": "^8.0.2"
}
}