-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "ecobot-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register src/serve.ts",
"start:watch": "nodemon",
"test": "ts-node src/tests/**.spec.ts | tap-spec",
"build": "tsc"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/"
],
"exec": "npm start",
"ext": "ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/blue-tape": "^0.1.33",
"@types/express": "^4.17.3",
"@types/morgan": "^1.9.0",
"@types/swagger-ui-express": "^4.1.1",
"@types/uuid": "^7.0.0",
"blue-tape": "^1.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"morgan": "^1.9.1",
"nodemon": "^2.0.2",
"serverless-http": "^2.3.2",
"ts-node": "^8.6.2",
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/node": "^13.7.7",
"standard": "^14.3.1",
"tap-spec": "^5.0.0",
"typescript": "^3.8.3"
}
}