-
Notifications
You must be signed in to change notification settings - Fork 308
/
package.json
28 lines (28 loc) · 810 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
{
"name": "async-programming-promises",
"version": "1.0.0",
"description": "Source code for the Pluralsight course JavaScript Promises and Async Programming",
"main": "index.js",
"scripts": {
"dev": "nodemon ./index.js",
"secondary": "cross-env PORT=3001 nodemon ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taylonr/async-programming-promises.git"
},
"author": "Nate Taylor ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/taylonr/async-programming-promises/issues"
},
"homepage": "https://github.com/taylonr/async-programming-promises#readme",
"dependencies": {
"cross-env": "^7.0.2",
"express": "^4.17.1",
"json-server": "^0.15.1"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}