-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.8 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pi-robot-car",
"version": "1.0.0",
"private": true,
"description": "Robot Car controlled through Circuit call",
"author": {
"name": "Walter Martins"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "sudo node ./server/index.js | ./node_modules/.bin/bunyan",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "index.js",
"dependencies": {
"@vue/cli": "4.4.6",
"bootstrap": "^4.5.0",
"bootstrap-icons": "1.0.0-alpha5",
"bootstrap-vue": "^2.16.0",
"bunyan": "1.8.14",
"core-js": "3.6.5",
"express": "4.17.1",
"jquery": "^1.9.1",
"pigpio": "3.2.3",
"rpi-ws281x-native": "0.10.0",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"vue": "2.6.11",
"vue-router": "3.2.0",
"vue-socket.io": "3.0.9"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.0",
"@vue/cli-plugin-eslint": "4.4.0",
"@vue/cli-plugin-router": "4.4.0",
"@vue/cli-service": "4.4.0",
"@vue/eslint-config-airbnb": "5.0.2",
"babel-eslint": "10.1.0",
"eslint": "^7.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "29.2.0",
"eslint-plugin-vue": "6.2.2",
"vue-template-compiler": "2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"_id": "pi-robot-car@1.0.0",
"keywords": [
"Robot",
"Raspberry"
],
"license": "ISC",
"readme": "ERROR: No README data found!"
}