-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
43
44
45
46
47
48
49
50
{
"name": "testeford",
"version": "1.0.0",
"description": "teste para ford",
"main": "index.js",
"scripts": {
"test": "npm test",
"start": "node -r ts-node/register -r tsconfig-paths/register dist/main/server.js",
"dev": "nodemon -r tsconfig-paths/register src/main/server.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorbrambilla/Teste-Ford.git"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [
"node",
"clean",
"architecture",
"typescript"
],
"author": "Victor Brambilla",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorbrambilla/Teste-Ford/issues"
},
"homepage": "https://github.com/victorbrambilla/Teste-Ford#readme",
"dependencies": {
"@prisma/client": "^4.1.1",
"cors": "^2.8.5",
"express": "^4.18.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"prettier": "2.7.1",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4",
"nodemon": "^2.0.19"
}
}