-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "bcms",
"version": "1.0.0",
"description": "Bristlecone Conference Management System",
"main": "server.js",
"scripts": {
"start": "env-cmd -f .env if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "env-cmd -f .env node server.js",
"start:dev": "env-cmd -f .env concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"seed": "node server/seeds/conferenceSeeds.js",
"build": "env-cmd -f .env cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@auth0/auth0-react": "^1.2.0",
"@types/jest": "^26.0.23",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.6.1",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"apollo-server-express": "^2.25.2",
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"bootstrap-icons": "^1.1.0",
"cloudinary": "^1.26.1",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"graphql": "^15.5.1",
"if-env": "^1.0.4",
"moment-timezone": "^0.5.32",
"mongoose": "^5.11.3",
"multer": "^1.4.2",
"react-scripts": "4.0.3",
"thenby": "^1.3.4",
"typescript": "^4.3.2"
}
}