-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 831 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
29
30
31
32
33
34
35
36
37
{
"name": "simple-echo-api",
"version": "1.0.0",
"description": "Echo HTTP Requests",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "gulp build",
"start": "node build/index.js",
"watch": "nodemon --watch build build/index.js",
"clean": "gulp clean"
},
"author": "Pedro Motta",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"nanoid": "^3.1.20"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.14",
"gulp": "^4.0.2",
"gulp-env": "^0.4.0",
"gulp-rimraf": "^1.0.0",
"gulp-shell": "^0.8.0",
"node": "^15.4.0",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": "12"
}
}