This repository was archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "velopick-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"migration:up": "node node_modules/.bin/mikro-orm migration:up",
"migration:create": "node node_modules/.bin/mikro-orm migration:create",
"schema:drop": "node node_modules/.bin/mikro-orm schema:drop",
"schema:create": "node node_modules/.bin/mikro-orm schema:create",
"schema:update": "node node_modules/.bin/mikro-orm schema:update",
"start:dev": "NODE_PATH=src ts-node-dev --respawn --transpile-only src/app.ts"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^8.2.0",
"@types/joi": "^17.2.3",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@mikro-orm/cli": "^4.5.4",
"@mikro-orm/core": "^4.4.3",
"@mikro-orm/entity-generator": "^4.5.4",
"@mikro-orm/mariadb": "^4.5.4",
"@mikro-orm/migrations": "^4.5.4",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@types/jsonwebtoken": "^8.5.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"fastify": "^3.11.0",
"fastify-compress": "^3.4.1",
"fastify-cookie": "^5.1.0",
"fastify-cors": "^6.0.1",
"fastify-helmet": "^5.2.0",
"fastify-plugin": "^3.0.0",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mariadb": "^2.5.3",
"middie": "^5.2.0",
"nanoid": "^3.1.23",
"reflect-metadata": "^0.1.13"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}