-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·33 lines (33 loc) · 1.04 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
{
"name": "modern-web-development",
"version": "1.1.0",
"description": "examples for the weekend tutorials",
"scripts": {
"install-packages": "npm install && npm install --global jshint cordova",
"lint": "jshint --exclude ./node_modules,./Course6/app .",
"start": "node ./Course1/mvc-service-structure-example/main.js",
"server": "node ./Course3/file-server/server.js",
"mobile": "node ./Course6/server/main.js | (cd ./Course6/app && cordova run ios)",
"desktop": "node ./Course6/server/main.js | electron ./Course7/"
},
"author": "Cristi Minica",
"license": "WTFPL",
"repository": "https://github.com/minicacristi/modern-web-development.git",
"dependencies": {
"axios": "0.19.0",
"body-parser": "^1.18.2",
"bootstrap": "4.3.1",
"express": "^4.16.3",
"font-awesome": "^4.7.0",
"mongodb": "3.0.7",
"mongoose": "5.6.2",
"morgan": "1.9.1",
"popper.js": "1.14.3",
"request": "2.88.0",
"vue": "2.5.16",
"vue-router": "3.0.1"
},
"devDependencies": {
"electron": "5.0.6"
}
}