-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.41 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": "nodejs-samples",
"version": "0.0.1",
"private": "true",
"description": "just some sample files",
"main": "app.js",
"dependencies": {
"memory-streams": "^0.1.3",
"cli-color": "^2.0.0",
"tar": "^6.0.2",
"express": "^4.17.1",
"lodash": "^4.17.19"
},
"devDependencies": {
"typescript": "^3.9.5",
"@types/lodash": "^4.14.156"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"events": "@powershell Get-Content mylogo -Encoding UTF8 && node Events/app.js || cat mylogo && node Events/app.js",
"basicf": "@powershell Get-Content mylogo -Encoding UTF8 && node BasicFunctions/app.js || cat mylogo && node BasicFunctions/app.js",
"filesystem": "@powershell Get-Content mylogo -Encoding UTF8 && cd FileSystem/ && node app.js || cat mylogo && cd FileSystem/ && node app.js",
"promptdata": "@powershell Get-Content mylogo -Encoding UTF8 && node PromptData/app.js || cat mylogo && node PromptData/app.js",
"httpstatic": "@powershell Get-Content mylogo -Encoding UTF8 && cd HttpStatic/ && node app.js || cat mylogo && cd HttpStatic/ && node app.js",
"httpexpress": "@powershell Get-Content mylogo -Encoding UTF8 && cd HttpExpress/ && node app.js || cat mylogo && cd HttpExpress/ && node app.js"
},
"author": "Nuno Relvao",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:nunorelvao/nodejs-samples.git"
}
}