-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "fifish",
"version": "0.1.0",
"description": "Website showing species of fish",
"main": "index.html",
"scripts": {
"clean": "rm -rf docs/ .cache/",
"build": "parcel build src/index.html --out-dir docs --public-url '.'",
"dev": "parcel src/index.html --out-dir docs",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"format": "prettier \"src/**/*.{js,html}\" --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gungy2/FiFish.git"
},
"author": "George Ungureanu Vranceanu",
"license": "GPL-3.0 License",
"bugs": {
"url": "https://github.com/Gungy2/FiFish/issues"
},
"homepage": "/FiFish/",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1"
},
"dependencies": {
"@reach/router": "^1.3.4",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}