-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "crud-rest",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kauefraga/crud-rest"
},
"main": "dist/http/server.js",
"scripts": {
"build": "pnpm i && tsc && rm -rf node_modules",
"postbuild": "pnpm i --prod",
"start": "node .",
"dev": "NODE_ENV=development tsnd --respawn --transpile-only src/http/server.ts",
"test": "vitest",
"test:core": "vitest src/core",
"test:http": "vitest src/http",
"lint": "eslint src/**/*.ts"
},
"author": "Kauê Fraga Rodrigues <kauefragarodrigues456@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"ts-node-dev": "^2.0.0",
"typescript": "*",
"vitest": "^0.23.2"
},
"dependencies": {
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0"
}
}