This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
74 lines (74 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
{
"name": "node-challenge",
"version": "0.0.0",
"description": "Website api",
"private": true,
"workspaces": [
"packages/*",
"packages/domains/*",
"test/*"
],
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"watch": "nodemon $npm_package_main",
"start": "node $npm_package_main",
"lint": "eslint --ext .ts --ext .js .",
"lint:fix": "eslint --ext .ts --ext .js . --fix",
"test": "yarn test:unit && yarn test:mid-level",
"test:acceptance": "NODE_ENV=qa jest test/acceptance/* --forceExit --maxWorkers=4",
"test:coverage": "NODE_ENV=qa jest packages/* --forceExit --maxWorkers=4 --coverage",
"test:mid-level": "NODE_ENV=qa jest test/mid-level/* --forceExit --maxWorkers=4",
"test:unit": "NODE_ENV=qa jest packages/* --forceExit --maxWorkers=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pleo-io/node-challenge.git"
},
"husky": {
"hooks": {
"pre-push": "yarn lint",
"post-merge": "yarn"
}
},
"typings": "types.d.ts",
"author": "Pleo.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/pleo-io/node-challenge/issues"
},
"homepage": "https://github.com/pleo-io/node-challenge#readme",
"dependencies": {
"@nc/domain-user": "0.0.0",
"@nc/domain-expense": "0.0.0",
"@nc/utils": "0.0.0",
"config": "^3.3.0",
"dotenv": "^10.0.0",
"express": "^4.17.0",
"ha-dns-cache": "^1.0.0",
"helmet": "^4.6.0",
"ts-node": "^10.2.0",
"typescript": "^4.4.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.9.0",
"@types/stoppable": "^1.1.0",
"@types/supertest": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.0",
"jest": "^27.2.0",
"jest-when": "^3.4.0",
"nodemon": "^2.0.0",
"supertest": "^6.1.0",
"ts-jest": "^27.0.0"
}
}