forked from smarter-contact-team/backend-test-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
75
76
77
{
"name": "backend-test-assignment",
"version": "1.0.0",
"description": "Back-end test assignment for smartercontact",
"main": "lib/index.js",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"lint": "eslint --ext .js,.ts .",
"start": "node lib/main.js",
"dev": "npx mikro-orm migration:up && nodemon src/index.ts --monitor"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/smartercontact/backend-test-assignment/issues"
},
"homepage": "https://gitlab.com/smartercontact/backend-test-assignment#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.19",
"typescript": "^4.4.3"
},
"dependencies": {
"@fastify/multipart": "^7.1.0",
"@mikro-orm/cli": "^5.2.4",
"@mikro-orm/core": "^5.2.4",
"@mikro-orm/migrations": "^5.2.4",
"@mikro-orm/sqlite": "^5.2.4",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"fastify": "^4.3.0",
"fastify-mikro-orm": "^3.0.0"
},
"engines": {
"node": "16",
"npm": "8"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
],
"sourceType": "module"
},
"ignorePatterns": [
"/lib/**/*"
],
"plugins": [
"@typescript-eslint",
"import"
]
}
}