forked from luizpicolo/skeleton-nodejs-express-ejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 938 Bytes
/
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": "skeleton-nodejs-express-ejs",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/server",
"dev": "tsnd ./src/server.ts",
"build": "rimraf ./dist && tsc",
"format": "prettier -w .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.10.0"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"dotenv": "^16.0.3",
"eslint": "^8.46.0",
"eslint-plugin-import-helpers": "^1.3.1",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"rimraf": "^4.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
}
}