-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "spellit-api",
"version": "0.0.1",
"description": "NodeJS Rest API for the Spell It client, using Clean Architecture concepts",
"author": "Henrique Machiavelli",
"scripts": {
"start": "node dist/infra/http/server.js",
"debug": "nodemon --watch \"src/\" --exec \"npm run build && npm start\"",
"dev": "rimraf dist && tsc -p tsconfig-build.json && npm start",
"build": "rimraf dist && tsc -p tsconfig-build.json && rimraf src",
"test": "jest"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-jsonschema": "^1.1.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.0",
"@types/joi": "^17.2.3",
"@types/node": "^17.0.23",
"@types/passport": "^1.0.7",
"@types/passport-http-bearer": "^1.0.37",
"@types/request-ip": "^0.0.37",
"@types/string-similarity": "^4.0.0",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "^3.11.1",
"awilix": "^7.0.1",
"awilix-express": "^7.0.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"joi": "^17.6.0",
"module-alias": "^2.2.2",
"passport": "^0.5.2",
"passport-http-bearer": "^1.0.1",
"prisma": "^3.11.1",
"request-ip": "^2.1.3",
"string-similarity": "^4.0.4"
},
"_moduleAliases": {
"@/infra": "./dist/infra",
"@/usecases": "./dist/domain/usecases",
"@/entities": "./dist/domain/entities",
"@/repositories": "./dist/data/repositories",
"@/controllers": "./dist/presentation/controllers",
"@/presentation": "./dist/presentation"
}
}