-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (46 loc) · 1.42 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
{
"name": "corkboard",
"version": "2.0.0",
"proxy": "http://localhost:3001/",
"description": "<p align=\"center\"> <img src=\"./public/front2/img/corksmall.JPG\" width=\"600\" title=\"Cork Board Logo\"> </p>",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently --kill-others \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm i",
"postinstall": "npm run build",
"build": "cd client and npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mynar7/corkboard.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mynar7/corkboard/issues"
},
"homepage": "https://github.com/mynar7/corkboard#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"if-env": "^1.0.4",
"metatag-crawler": "^2.1.0",
"mysql2": "^1.5.3",
"nodemailer": "^4.6.5",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"sequelize": "^4.37.10"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.18.6"
}
}