-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
51
52
{
"name": "questions-backend",
"version": "1.0.0",
"description": "NodeJs API for questions-app",
"main": "dist/app.js",
"scripts": {
"build": "tslint -p .\\tsconfig.json && tsc",
"start": "node .dist/app.js",
"start-dev": "node --inspect=5858 -r ts-node/register ./src/app.ts",
"start:watch": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Leonardo Ruiz",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.8",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-status": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.27",
"mongoose": "^5.8.11",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/mongodb": "^3.3.15",
"@types/mongoose": "^5.7.0",
"@types/node": "^13.7.0",
"@types/uuid": "^3.4.7",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run start-dev",
"ext": "ts"
}
}