-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "domain-driven-design-patterns",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc --skipLibCheck --project ./",
"test": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watchAll -c jest-unit.config.js",
"test:ci": "npm test -- -c jest-unit.config.js --coverage --forceExit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.18",
"@types/jest": "^29.2.3",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"nodemon": "^3.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.33.0",
"sequelize-typescript": "^2.1.5",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1"
}
}