-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "medicine-availability",
"version": "1.0.0",
"description": "",
"scripts": {
"client-install": "cd client && npm install",
"client": "cd client && npm run start",
"start": "node ./server/server.js",
"server": "nodemon ./server/server.js",
"build": "cd client && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fack2/MedicineAvailability.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fack2/MedicineAvailability/issues"
},
"homepage": "https://github.com/fack2/MedicineAvailability#readme",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"cookie": "^0.4.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^1.19.1",
"pg": "^7.12.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"concurrently": "^4.1.2",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1"
}
}