-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
{
"name": "adoptation",
"version": "1.0.0",
"description": "A pet adoption application.",
"main": "server.js",
"scripts": {
"start": "yarn server",
"server": "nodemon server",
"client-install": "cd client && yarn",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"babel-version": "babel --version",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/furkanalptokac/adoptation.git"
},
"keywords": [],
"author": "Furkan Alp Tokac <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/furkanalptokac/adoptation/issues"
},
"homepage": "https://github.com/furkanalptokac/adoptation#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^6.0.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"generate-password": "^1.6.0",
"gravatar": "^1.8.1",
"http-proxy-middleware": "^1.0.6",
"is-empty": "^1.2.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"nodemailer": "^6.5.0",
"nodemon": "^2.0.7",
"normalize-url": "^4.5.0",
"password-validator": "^5.1.1",
"react-select": "^4.2.1"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.15",
"airbnb": "^0.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"prettier": "2.2.1",
"regenerator-runtime": "^0.13.7"
}
}