-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.33 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
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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "feather",
"version": "1.0.0",
"private": true,
"description": "Local storage option for saving your weight daily and tracking it over time. Go to [Weight Tracker](https://bikingbadger.github.io/weight-tracker/) and start saving your data over time",
"author": "",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --watchAll",
"lint": "vue-cli-service lint",
"functions": "netlify-lambda serve src/functions",
"prebuild": "netlify-lambda build src/functions",
"tailwind": "tailwind build src/css/style.css -o dist/css/style.css",
"test:functions": "jest --watchAll"
},
"main": "app.js",
"dependencies": {
"apexcharts": "^3.19.0",
"axios": "^0.21.1",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"encoding": "^0.1.12",
"faunadb": "^2.14.0",
"fetch": "^1.1.0",
"firebase": "^8.2.3",
"vue": "^2.6.11",
"vue-apexcharts": "^1.5.3",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-router": "^4.4.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "~4.2.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.1.2",
"jest": "^26.0.1",
"netlify-lambda": "^1.6.3",
"supertest": "^4.0.2",
"tailwindcss": "^1.2.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/bikingbadger/weight-tracker/issues"
},
"homepage": "https://github.com/bikingbadger/weight-tracker#readme",
"keywords": [],
"license": "MIT",
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/bikingbadger/weight-tracker.git"
}
}