This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
{
"name": "nscode",
"version": "0.0.0",
"description": "NS Code Node.js Recruitment Task",
"main": "./dist/index.js",
"engines": {
"node": "14.x",
"npm": "7.x"
},
"workspaces": [
"./lib/*"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc --project ./tsconfig.build.json",
"bootstrap": "npm run build --workspaces",
"prisma:introspect": "prisma introspect",
"prisma:generate": "prisma generate",
"start": "sleep 5 && node ./dist/index.js",
"start:dev": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/index.ts",
"tsc": "tsc --noEmit",
"pretest": "docker-compose up -d db",
"posttest": "docker-compose down -v",
"test": "wait-on tcp:5432 -d 2000 --interval 5000 && cross-env NODE_ENV='test' && jest --detectOpenHandles --verbose",
"eslint": "eslint ./src --ext .ts --fix"
},
"author": "Jakub Gałecki <[email protected]>",
"license": "MIT",
"devDependencies": {
"@hapi/boom": "^9.1.2",
"@swc-node/jest": "^1.2.1",
"@tsconfig/node14": "^1.0.0",
"@types/hapi__hapi": "^20.0.8",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/node-cron": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"dotenv": "^9.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prisma": "^2.22.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"wait-on": "^5.3.0"
},
"dependencies": {
"@hapi/hapi": "^20.1.2",
"@nscode/config": "file:lib/config",
"@nscode/logger": "file:lib/logger",
"@prisma/client": "^2.22.1",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"joi": "^17.4.0",
"node-cron": "^3.0.0"
}
}