This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
{
"name": "fitness-app",
"version": "0.8.0",
"description": "* Enter how many steps you have taken and get the amount traveled in miles \r * Enter in how many minutes you biked and at what speed, and get an estimate for how many miles you traveled \r * Suggest workouts to perform",
"main": "index.js",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"ajv": "^6.9.2",
"ajv-keywords": "^3.4.0",
"axios": "^0.21.1",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"joi": "^14.0.0",
"jquery": "^3.5.0",
"popper.js": "^1.14.7",
"vue": "^2.6.7",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.13.1",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.6.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faizjamil/Fitness-app.git"
},
"author": "Faizan Jamil",
"license": "ISC",
"homepage": "https://github.com/faizjamil/Fitness-app#readme",
"bugs": {
"url": "https://github.com/faizjamil/Fitness-app/issues"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": 0
},
"parserOptions": {
"parser": "babel-eslint"
},
"globals": {
"FB": false
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}