-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "gitfit",
"version": "1.0.0",
"description": "An open source fitness tracker web application for developers",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brians-open-source-stuff/GitFit.git"
},
"keywords": [
"fitness",
"tracker"
],
"author": "Brian Emilius <brian@brianemilius.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brians-open-source-stuff/GitFit/issues"
},
"homepage": "https://github.com/brians-open-source-stuff/GitFit#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"sass": "^1.27.0"
},
"dependencies": {
"@reach/router": "^1.3.4",
"idb-keyval": "^3.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}