forked from GSG-K3/urban-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.85 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
{
"name": "urban-calendar",
"version": "1.0.0",
"description": "**Urban Natural** is a small furniture company with a showroom located in Bloomfield, New Jersey. They sell products made from the healthiest, safest, most durable materials available- free from harmful chemicals.",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"start": "NODE_ENV=production node server/index.js",
"build": "cd client && npm run build",
"project-setup": "npm install && cd client && npm install",
"heroku-postbuild": "cd client && npm install && npm run build",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-K3/urban-calendar.git"
},
"keywords": [],
"author": "team4",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-K3/urban-calendar/issues"
},
"homepage": "https://github.com/GSG-K3/urban-calendar#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-developit": "^1.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.5",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"dependencies": {
"concurrently": "^5.2.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.4",
"pg": "^7.18.2",
"yup": "^0.29.1"
},
"eslintConfig": {
"extends": "eslint-config-developit"
}
}