forked from zdman135/spnsrd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "spnsrd",
"version": "1.0.0",
"description": "app that connects events with sponsors",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zdman135/spnsrd.git"
},
"keywords": [
"sponsor",
"event",
"sponsored"
],
"author": "Rich, Luke, Kelsie, Alex",
"license": "MIT",
"bugs": {
"url": "https://github.com/zdman135/spnsrd/issues"
},
"homepage": "https://github.com/zdman135/spnsrd#readme",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"if-env": "^1.0.4",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"mongoose": "^5.5.1",
"mongoose-unique-validator": "^2.0.2",
"nodemailer": "^6.1.1",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0",
"validator": "^10.11.0"
}
}