-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "gradingsystem",
"version": "1.0.0",
"description": "Grading System designed for a hypothetical university (part of PLP Assignment)",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css-build": "node-sass --omit-source-map-url public/assets/sass/mystyles.scss public/assets/css/mystyles.css",
"css-watch": "npm run css-build -- --watch",
"startD": "npm run css-watch",
"serverStart": "node server.js",
"start": "npm run startD & npm run serverStart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mittalchirag/GradingSystem.git"
},
"author": "Chirag Mittal",
"license": "ISC",
"bugs": {
"url": "https://github.com/mittalchirag/GradingSystem/issues"
},
"homepage": "https://github.com/mittalchirag/GradingSystem#readme",
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap-social": "^5.1.1",
"bulma-extensions": "^2.2.1",
"express": "^4.16.3",
"morgan": "^1.9.1",
"path": "^0.12.7",
"python-shell": "^1.0.4"
},
"devDependencies": {
"bulma": "^0.7.1",
"node-sass": "^4.9.2"
}
}