-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 KB
/
package.json
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": "node-typescript-starter",
"version": "1.0.0",
"description": "Template de configurações para utilizar o NodeJS em conjunto com o TypeScript",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"build": "sucrase ./src -d ./dist --transforms typescript,imports"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.19",
"prettier": "^2.0.2",
"sucrase": "^3.12.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"cors": "^2.8.5",
"express": "^4.18.1",
"mongoose": "^6.4.4"
}
}