forked from flynn0087/BWCC_Teetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "suds_scheduler",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint \"./**/*.js\"",
"fix": "eslint **/*.js --fix",
"start": "node server.js",
"start:original": "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 install && npm run build",
"seed": "node scripts/seedDB.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flynn0087/BWCC_Teetime"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flynn0087/BWCC_Teetime/issues"
},
"homepage": ".",
"dependencies": {
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"bcrypt": "^5.0.1",
"bootstrap": "^4.6.0",
"concurrently": "^6.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"googleapis": "^67.1.1",
"mongoose": "^5.11.19",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-bootstrap": "^1.5.2",
"react-calendar": "^3.3.1",
"react-datetime-picker": "^3.2.0",
"react-select": "^4.2.1",
"yargs": "^16.2.0"
},
"engines": {
"node": "14.16.0"
}
}