-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "node-a2",
"version": "1.0.0",
"description": "A template for avanced projects",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/**/* && tsc --sourceMap false",
"test": "vitest",
"coverage": "vitest --coverage",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "NODE_ENV=production node ./dist/index.js"
},
"repository": "https://github.com/hakcolt/ts-template.git",
"author": "Igor Hakcolt",
"keywords": [
"node",
"express",
"clean-architecture",
"solid",
"ddd",
"multi-language",
"advanced-api"
],
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.16",
"@types/uuid": "^9.0.0",
"@vitest/coverage-c8": "^0.26.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"vitest": "^0.26.2"
},
"dependencies": {
"@hakcolt/resources": "^1.1.0",
"@hakcolt/result": "^1.2.0",
"@hakcolt/validator": "^1.0.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"uuid": "^9.0.0"
}
}