-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2 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
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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nights-in",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"lint": "eslint . --ext .js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JFunck1990/Nights-In"
},
"engines": {
"npm": "5.7.1",
"node": "11.12.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JFunck1990/Nights-In/issues"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"homepage": "https://github.com/JFunck1990/Nights-In#readme",
"dependencies": {
"@nylas/components-agenda": "^0.0.35",
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"if-env": "^1.0.4",
"moment": "^2.29.0",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nylas": "^5.3.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-bootstrap": "^1.5.2",
"react-icons": "^4.2.0",
"sequelize": "^6.5.1",
"socket.io": "^4.1.1"
},
"devDependencies": {
"concurrently": "^6.0.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"nodemon": "^2.0.7",
"prettier": "^2.1.2"
}
}