-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
53
54
55
56
{
"name": "guide-apinodejs",
"version": "1.0.0",
"description": "Guide for create a new api rest and websocket a backend",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "ts-node .",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts ",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavielSA/Guide-apiNodeJS.git"
},
"author": "Daviel for solinfpro",
"license": "SEE LICENCE IN FILE LICENSE",
"bugs": {
"url": "https://github.com/DavielSA/Guide-apiNodeJS/issues"
},
"homepage": "https://github.com/DavielSA/Guide-apiNodeJS#readme",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.3.8",
"@types/mysql": "^2.15.9",
"@types/ws": "^7.2.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"ts-node": "^8.6.2",
"ws": "^7.2.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/request": "^2.48.4",
"@types/supertest": "^2.0.8",
"jest": "^25.2.4",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"tslint": "^6.0.0",
"typescript": "^3.8.3"
}
}