-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nodejs-st-module-4",
"version": "1.0.0",
"description": "In-memory CRUD REST service with validation",
"main": "./dist/server.js",
"scripts": {
"start": "tsc && node ./dist/server.js",
"test": "jest",
"server": "nodemon ./src/server.ts",
"orm:revert:migration": "npm run typeorm migration:revert",
"orm:create:migration": "npm run typeorm migration:create -- -n create",
"orm:run:migration": "npm run typeorm migration:run",
"orm:generate:migration": "npm run typeorm migration:generate -- -n generate --pretty",
"lint": "eslint ./src --ext .js,.ts",
"prettier:check": "prettier --check ./src",
"prettier:write": "prettier --write ./src",
"prepare": "husky install",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"seed": "npx ts-node ./src/modules/users/utils/seeder.ts"
},
"repository": {
"type": "git",
"url": "https://git.epam.com/uladzimir_kazak/nodejs-st-module-4.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/prompt-cli": "^12.1.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32",
"uuid": "^8.3.2",
"winston": "^3.3.3"
}
}