-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 992 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
{
"name": "autograder",
"version": "1.0.0",
"description": "Takes a query file containing a set of query and executes in database to check the correctness of query displaying the result in html page",
"main": "app/app.js",
"scripts": {
"test": "jasmine",
"start": "nodemon -e css,ejs,js --watch app app/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vijaykumardev/SQLAutoGrader.git"
},
"author": "vijay",
"license": "ISC",
"bugs": {
"url": "https://github.com/vijaykumardev/SQLAutoGrader/issues"
},
"homepage": "https://github.com/vijaykumardev/SQLAutoGrader.git#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"mysql": "^2.15.0",
"node-sqlparser": "^1.0.2",
"pg": "^7.4.1",
"querystring": "^0.2.0",
"reload": "^2.2.2"
},
"devDependencies": {
"jasmine": "^3.1.0"
}
}