-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 862 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 862 Bytes
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": "solido-todo-api",
"version": "0.1.0",
"description": "Learn ExpressJS",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "node index.js",
"mon": "nodemon index",
"dev": "node-dev index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunturkh/learn-expressjs.git"
},
"keywords": [
"ExpressJS",
"nodeJS",
"Learn"
],
"author": "Solido League (Guntur Kurniawan Heryanto, Maya Sopiah Lubis, Muhammad Alif Raher)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gunturkh/learn-expressjs/issues"
},
"homepage": "https://github.com/gunturkh/learn-expressjs#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3"
},
"devDependencies": {
"node-dev": "^3.1.3",
"nodemon": "^1.18.3"
}
}