-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.01 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
{
"name": "werobot-admin",
"version": "1.0.0",
"description": "Administration interface of the werobot project",
"author": "Thingmill <[email protected]>",
"private": true,
"scripts": {
"dev": "cross-env PORT=3001 API_ENDPOINT=http://localhost:8000 NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env API_ENDPOINT=https://api.werobot.fr nuxt build",
"deploy": "git pull origin master && npm install && npm run build && cp .htaccess ./dist",
"start": "cross-env NODE_ENV=production API_ENDPOINT=https://api.werobot.fr PORT=3001 node server/index.js",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/dotenv": "^1.3.0",
"cross-env": "^5.2.0",
"express": "^4.16.3",
"mavon-editor": "^2.6.17",
"nuxt": "^2.0.0",
"nuxt-env": "0.0.4",
"v-clipboard": "^2.2.1",
"vue-apitator": "0.0.8",
"vuetify": "^1.2.4"
},
"devDependencies": {
"nodemon": "^1.11.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2"
}
}