-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "polmed",
"version": "1.0.0",
"description": "Simple webpage for making medical appointments. Written in React.js.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"dev": "set PORT=3000 && parcel src/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itspatys/POLmed.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/itspatys/POLmed/issues"
},
"homepage": "https://github.com/itspatys/POLmed#readme",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"parcel": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^2.4.1"
},
"dependencies": {
"hamburgers": "^1.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^6.2.1"
},
"browserslist": [
"last 2 Firefox versions"
],
"staticFiles": {
"watcherGlob": "**"
}
}