-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
43
44
45
46
47
{
"name": "IoTFlow",
"version": "1.0.0",
"description": "IoT Data Flow Programing",
"author": "Jero Soler",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch 'server/*.js' --ignore server/script.js --ignore 'server/boards/*.js' ",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.4",
"@nuxtjs/font-awesome": "^1.0.4",
"body-parser": "^1.19.0",
"element-ui": "^2.4.9",
"etherport-client": "^0.1.4",
"express": "^4.16.4",
"firmata": "^0.19.1",
"fs": "0.0.1-security",
"johnny-five": "^0.15.1",
"mosca": "^2.8.3",
"node-cron": "^2.0.3",
"node-dash-button": "^0.6.1",
"nuxt": "^2.2.0",
"pcap": "^2.1.0",
"repl": "^0.1.3",
"request": "^2.88.0",
"rete-vue-render-plugin": "0.2.1",
"serialport": "^6.2.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"wemore": "^0.6.0",
"zip-folder": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.2.1",
"eslint": "^5.8.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.7.1",
"nodemon": "^1.18.5"
}
}