-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.97 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
78
{
"name": "mikro-orm-accounts",
"version": "0.0.1",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm/config.ts",
"./build/src/mikro-orm/config.js"
]
},
"scripts": {
"start:ts-node": "ts-node --files src/index.ts",
"start": "yarn run compile && node build/src/index.js",
"start:no-compile": "node build/src/index.js",
"clean": "rimraf build temp",
"compile": "yarn run clean && tsc -p . && yarn run postcompile",
"postcompile": "copyfiles \"src/**/*.graphql\" build",
"fix": "eslint --fix \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "yarn run compile"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"@accounts/magic-link": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/mikro-orm": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/module-core": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/module-mikro-orm": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/module-password": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/password": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/rest-express": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/server": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@accounts/types": "1.0.0-alpha-20240107161311-3b08baff26de149c7ac84dd2fc77c459d7d1cf59",
"@envelop/core": "^5.0.0",
"@envelop/graphql-modules": "^6.0.0",
"@mikro-orm/cli": "6.0.0-dev.321",
"@mikro-orm/core": "6.0.0-dev.321",
"@mikro-orm/entity-generator": "6.0.0-dev.321",
"@mikro-orm/knex": "6.0.0-dev.321",
"@mikro-orm/migrations": "6.0.0-dev.321",
"@mikro-orm/reflection": "6.0.0-dev.321",
"@mikro-orm/sqlite": "6.0.0-dev.321",
"body-parser": "1.20.2",
"cors": "2.8.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-modules": "3.0.0-alpha-20231106133212-0b04b56e",
"graphql-yoga": "^5.1.1",
"helmet": "^7.1.0",
"reflect-metadata": "^0.2.1"
},
"packageManager": "[email protected]"
}