-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.31 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@triptyk/nfw",
"version": "5.0.0-alpha.1",
"description": "![alt text](https://repository-images.githubusercontent.com/166414581/dc0a1b80-a1a0-11e9-805b-cf8be46b5507)",
"scripts": {
"test": "node test.js",
"test:acceptance": "vitest -c config/vitest/acceptance.vitest.config.ts",
"test:unit": "vitest -c config/vitest/unit.vitest.config.ts",
"test:integration": "vitest -c config/vitest/integration.vitest.config.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:duplication": "jscpd -c config/jscpd.json --exitCode 1",
"mikro-orm:cli": "MIKRO_ORM_CLI_USE_TS_NODE=1 MIKRO_ORM_DYNAMIC_IMPORTS=1 node --experimental-specifier-resolution=node --loader ts-node/esm ./node_modules/@mikro-orm/cli/cli.js",
"start:dev": "node start.js",
"start:dev:debug": "DEBUG=true node start.js",
"start:test": "NODE_ENV=test node start.js",
"start:test:debug": "DEBUG=true NODE_ENV=test node start.js"
},
"mikro-orm": {
"configPaths": [
"config/orm.config.ts"
]
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TRIPTYK/nfw.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TRIPTYK/nfw/issues"
},
"dependencies": {
"@faker-js/faker": "~8.2.0",
"@koa/cors": "~4.0.0",
"@mikro-orm/cli": "~5.9.3",
"@mikro-orm/core": "~5.9.3",
"@mikro-orm/migrations": "~5.9.3",
"@mikro-orm/postgresql": "~5.9.3",
"@mikro-orm/seeder": "~5.9.3",
"@triptyk/nfw-core": "~5.0.0",
"@triptyk/nfw-http": "~5.0.0",
"@triptyk/nfw-mikro-orm": "~5.0.0",
"@triptyk/nfw-resources": "~5.0.0",
"bcrypt": "~5.1.1",
"jsonwebtoken": "~9.0.2",
"koa": "~2.14.2",
"koa-body": "~6.0.1",
"koa-helmet": "~7.0.2",
"koa-qs": "~3.0.0",
"koa-ratelimit": "~5.0.1",
"pluralize": "~8.0.0",
"reflect-metadata": "~0.1.13",
"tracer": "~1.3.0",
"ts-dotenv": "~0.9.1",
"typescript": "~5.2.2",
"uuid": "~9.0.1",
"yup": "~1.3.2"
},
"homepage": "https://github.com/TRIPTYK/nfw#readme",
"devDependencies": {
"@casl/ability": "~6.5.0",
"@types/bcrypt": "~5.0.2",
"@types/formidable": "~3.4.5",
"@types/json-api-serializer": "~2.6.6",
"@types/jsonwebtoken": "~9.0.5",
"@types/koa": "~2.13.11",
"@types/koa-qs": "~2.0.3",
"@types/koa-ratelimit": "~5.0.4",
"@types/koa__cors": "~4.0.3",
"@types/koa__router": "~12.0.4",
"@types/node": "~20.9.0",
"@types/pluralize": "~0.0.33",
"@types/uuid": "~9.0.7",
"@typescript-eslint/eslint-plugin": "~6.10.0",
"@typescript-eslint/parser": "~6.10.0",
"@vitest/coverage-v8": "~0.34.6",
"@vitest/ui": "~0.34.6",
"concurrently": "~8.2.2",
"eslint": "~8.53.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-n": "~16.3.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~3.0.0",
"fetch-blob": "^4.0.0",
"formdata-polyfill": "^4.0.10",
"jscpd": "~3.5.10",
"node-fetch": "~3.3.2",
"nodemon": "~3.0.1",
"prettier-eslint": "~16.1.2",
"ts-node": "~10.9.1",
"type-fest": "~4.7.1",
"vite": "~4.5.0",
"vitest": "~0.34.6"
},
"volta": {
"node": "20.9.0"
},
"packageManager": "[email protected]"
}