-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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": "recipies-node-api",
"version": "1.0.0",
"description": "Simple API with Node.js , MongoDB, PostgreSQL",
"main": "server.ts",
"scripts": {
"build": "tsc",
"compile": "rm -rf dist && mkdir dist && webpack --config webpack.server.config.js --progress --colors && cp package.json dist/package.json",
"dev": "ts-node --files src/server.ts",
"dev:nodemon": "nodemon --watch 'src/**/*.ts' --exec 'ts-node --files' src/server.ts",
"start:dev": "tsc && node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Zubair94/recipies-node-api.git"
},
"keywords": [
"express",
"typescript",
"nodejs"
],
"author": "Zubair",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zubair94/recipies-node-api/issues"
},
"homepage": "https://github.com/Zubair94/recipies-node-api#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"mongoose": "^5.8.7",
"morgan": "^1.9.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/helmet": "^0.0.45",
"@types/mongoose": "^5.5.41",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.2",
"dotenv-webpack": "^1.7.0",
"nodemon": "^2.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
}
}