-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.84 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
{
"name": "@thread-js/backend",
"private": true,
"engines": {
"node": "24.16.x",
"npm": "11.13.x"
},
"type": "module",
"scripts": {
"knex": "cross-env NODE_OPTIONS=\"--loader ts-paths-esm-loader\" knex",
"migrate:dev": "npm run knex migrate:latest",
"migrate:dev:make": "npm run knex migrate:make -- -x ts",
"migrate:dev:down": "npm run knex migrate:down",
"migrate:dev:rollback": "npm run knex migrate:rollback -- --all",
"migrate:dev:unlock": "npm run knex migrate:unlock",
"migrate:dev:reset": "npm run migrate:dev:rollback && npm run migrate:dev",
"seed:run": "npm run knex seed:run",
"start:dev": "tsx watch ./src/index.ts",
"lint:type": "npx tsc --noEmit",
"lint:js": "npx eslint . --max-warnings=0",
"lint": "concurrently \"npm:lint:*\"",
"build": "tsc && tsc-alias",
"pretest": "cross-env NODE_ENV=test npm run migrate:dev",
"test": "cross-env NODE_ENV=test node --experimental-vm-modules --expose-gc --no-compilation-cache ../../node_modules/jest/bin/jest.js --config jest.config.js --runInBand --forceExit --detectOpenHandles",
"test:coverage": "npm run test -- --coverage",
"test:auth": "npm run test -- --verbose --rootDir=tests/modules/auth/"
},
"dependencies": {
"@fastify/static": "9.1.3",
"@thread-js/shared": "*",
"convict": "6.2.5",
"dotenv": "17.4.2",
"fastify": "5.8.5",
"knex": "3.2.10",
"objection": "3.1.5",
"pg": "8.21.0",
"pino": "10.3.1",
"qs": "6.15.2"
},
"devDependencies": {
"@faker-js/faker": "10.4.0",
"@jest/globals": "30.4.1",
"@types/convict": "6.1.6",
"@types/jest": "30.0.0",
"@types/pg": "8.20.0",
"@types/qs": "6.15.1",
"cross-env": "10.1.0",
"jest": "30.4.2",
"pino-pretty": "13.1.3",
"ts-jest": "29.4.11",
"ts-paths-esm-loader": "1.4.3",
"tsx": "4.22.3"
}
}