-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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": "madflow",
"version": "1.0.0",
"description": "Helping students pick the most optimal courses",
"main": "index.js",
"engines": {
"node": "16.13.0"
},
"scripts": {
"client-install": "cd client && npm install",
"dev-install": "npm install && npm run client-install",
"start": "node index.js",
"server": "nodemon index.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "jest --coverage --verbose --testEnvironment=node --runInBand --rootDir=tests",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badger-advisor/MadFlow.git"
},
"author": "James",
"license": "MIT",
"bugs": {
"url": "https://github.com/badger-advisor/MadFlow/issues"
},
"homepage": "https://github.com/badger-advisor/MadFlow#readme",
"dependencies": {
"concurrently": "^6.3.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^6.0.11",
"passport": "^0.5.0",
"passport-google-oauth20": "^2.0.0",
"supertest": "^6.1.6"
},
"devDependencies": {
"chokidar": "^3.5.2",
"jest": "^27.3.1",
"nodemon": "^2.0.14"
}
}