-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
37
{
"name": "project",
"version": "1.0.0",
"description": "typescript-boilerplate ",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npm run lint && rimraf dist/ && tsc",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"fix": "eslint --fix src/**/*.ts"
},
"author": "Augusto Eduardo Torres",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.2",
"rimraf": "^4.0.4",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"dependencies": {
"dotenv": "^16.3.1",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1",
"zennv": "^0.1.1",
"zod": "^3.21.4"
}
}