-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 955 Bytes
/
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
{
"name": "coursenet",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.5.x"
},
"scripts": {
"py:venv": "cd py && python -m venv env",
"py:activate": "cmd /k .\\py\\env\\Scripts\\activate",
"py:install": "pip install -r requirements.txt",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev:nodemon": "nodemon app.js",
"dev:redis": "redis-server",
"dev": "npm-run-all --parallel dev:*"
},
"nodemonConfig": {
"verbose": true,
"ignore": ["py"]
},
"repository": {
"type": "git",
"url": "github.com/valentinoli/epfl-coursenet-api"
},
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"node-schedule": "^1.3.2",
"nodemailer": "^6.6.2",
"redis": "^3.1.2"
},
"devDependencies": {
"dotenv": "^10.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}