-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "codercar-controller",
"version": "1.0.0",
"description": "A web interface for your CodeRcar robot",
"author": "Matthew Piercey",
"private": true,
"scripts": {
"dev": "nuxt --port 1234",
"build": "nuxt build",
"start": "nuxt start --port 5678",
"generate": "nuxt generate",
"tauri:source": "yarn tauri",
"tauri:dev": "yarn tauri:source dev",
"tauri:build": "yarn tauri:source build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js,vue}": "yarn lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"chart.js": "^2.9.3",
"chartjs-plugin-streaming": "^1.8.0",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"nuxt": "^2.13.3",
"url-loader": "^4.1.0",
"vue-chartjs": "^3.5.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.5.0",
"eslint-plugin-nuxt": ">=1.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"stylelint": "^13.6.1"
}
}