-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "chat-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Isaius/chat-api.git",
"author": "Isaias <isaigrec@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "sucrase ./src -d ./dist --transforms typescript,imports"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/mongoose": "^5.7.32",
"@types/socket.io": "^2.1.10",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"sucrase": "^3.15.0",
"typescript": "^3.9.7"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"http": "^0.0.1-security",
"mongoose": "^5.9.25",
"socket.io": "^2.3.0"
}
}