-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
50
{
"name": "node-typescript",
"version": "1.0.0",
"description": "Node with express using typescript",
"main": "./dist/index.js",
"apidoc": {
"title": "Node-typescript documentation",
"url": "http://localhost:3000/api/v1",
"sampleUrl":"http://localhost:3000/api/v1",
"header": {
"title": "Node Typescript",
"filename":"doc-header.md"
}
},
"scripts": {
"compile": "tsc",
"doc": "apidoc -i dist/ -o ./dist/apidoc -f '.*\\.js$' ",
"start": "tsc && node ./dist",
"watch": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Brian Iyoha",
"license": "ISC",
"dependencies": {
"app-root-path": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"joi": "^14.3.0",
"lodash": "^4.17.13",
"mongoose": "^5.4.0",
"morgan": "^1.9.1",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/joi": "^14.0.1",
"@types/lodash": "^4.14.119",
"@types/mongoose": "^5.3.5",
"@types/morgan": "^1.7.35",
"@types/node": "^10.12.15",
"apidoc": "^0.17.7",
"nodemon": "^1.18.9",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}