-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.38 KB
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
{
"name": "node-example",
"version": "0.0.1",
"description": "node.js example",
"main": "index.js",
"author": "daggerok",
"license": "MIT",
"private": true,
"scripts": {
"first-app": "cross-env PORT=3001 node ./01-first-app",
"modules-app": "cross-env PORT=3002 node ./02-modules-app",
"render-html-app": "cross-env PORT=3003 node ./03-render-html-app",
"routing-pages-app": "cross-env PORT=3004 node ./04-routing-pages-app",
"routing-combine-app": "cross-env PORT=3005 node ./04-routing-combine-app",
"generate-express-app": "express 06-express",
"express-app": "cross-env PORT=3006 node ./06-express/bin/www",
"handlebars-app": "cross-env PORT=3007 node ./07-express-handlebars/bin/www",
"get-and-post-app": "cross-env PORT=3008 nodemon ./08-express-get-and-post/bin/www -w ./08-express-get-and-post/ -i ./08-express-get-and-post/mode_modules",
"sessions-and-validation-app": "cross-env PORT=3009 nodemon ./09-sessions-and-validation/bin/www -w ./09-sessions-and-validation",
"build": "echo this is a build npm task"
},
"keywords": [],
"devDependencies": {
"cross-env": "5.0.5",
"express-generator": "4.15.5",
"nodemon": "1.12.1",
"npm-check-updates": "2.13.0"
},
"dependencies": {
"body-parser": "1.18.2",
"cookie-parser": "1.4.3",
"express": "4.16.2",
"express-sse": "0.4.1",
"morgan": "1.9.0"
}
}