forked from PauloCesar1218/tindev-back
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "tindev",
"version": "1.0.0",
"description": "This is simple API built with nodejs using typescript and mysql as it's database to a small application. My goal is to futher my personal and professional knowledge as an overall developer.",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PauloCesar1218/tindev-back.git"
},
"keywords": [
"tindev"
],
"author": "Paulo Cesar Alves da Silva Junior",
"license": "ISC",
"bugs": {
"url": "https://github.com/PauloCesar1218/tindev-back/issues"
},
"homepage": "https://github.com/PauloCesar1218/tindev-back#readme",
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.1",
"sucrase": "^3.10.1",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/mysql": "^2.15.7",
"@types/node": "^12.7.2",
"@types/socket.io": "^2.1.4",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"consign": "^0.1.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"json-web-token": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.17.1",
"socket.io": "^2.3.0"
}
}