-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.95 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "sample-app",
"version": "0.0.3",
"description": "A sample app for testing out @intentjs/core integrations.",
"author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/intentjs/new-app-starter.git"
},
"bugs": {
"url": "https://github.com/intentjs/new-app-starter/issues"
},
"homepage": "https://github.com/intentjs/new-app-starter",
"imports": {
"#http/*": "./app/http/*.js",
"#models/*": "./app/models/*.js",
"#services/*": "./app/services/*.js",
"#utils/*": "./app/utils/*.js",
"#boot/*": "./app/boot/*.js",
"#errors/*": "./app/errors/*.js",
"#repositories/*": "./app/repositories/*.js",
"#events/*": "./app/events/*.js",
"#jobs/*": "./app/jobs/*.js",
"#listeners/*": "./app/listeners/*.js",
"#console/*": "./app/console/*.js",
"#config/*": "./config/*.js",
"#transformers/*": "./app/transformers/*.js",
"#validators/*": "./app/validators/*.js"
},
"scripts": {
"dev": "node intent dev",
"build": "node intent build",
"format": "prettier --write \"app/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{app,libs,test}/**/*.ts\" --fix",
"format:check": "prettier --check \"app/**/*.ts\" \"test/**/*.ts\"",
"lint:check": "eslint \"{app,libs,test}/**/*.ts\"",
"start": "./node_modules/.bin/intent start",
"start:dev": "./node_modules/.bin/intent start --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.689.0",
"@aws-sdk/credential-providers": "^3.687.0",
"@aws-sdk/s3-request-presigner": "^3.689.0",
<<<<<<< HEAD
"@intentjs/core": "workspace:*",
=======
"@intentjs/core": "*",
>>>>>>> fc196e7 (Initial commit: Full-stack framework setup)
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"node-cache": "^5.1.2",
"objection": "^3.1.4",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.0",
"resend": "^4.0.1-alpha.0",
"ulid": "^2.3.0",
"winston": "^3.14.2"
},
"devDependencies": {
<<<<<<< HEAD
"@intentjs/cli": "workspace:*",
"@intentjs/tooling": "workspace:*",
=======
"@intentjs/cli": "*",
"@intentjs/tooling": "*",
>>>>>>> fc196e7 (Initial commit: Full-stack framework setup)
"@nestjs/testing": "^10.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rspack/cli": "^1.2.8",
"@rspack/core": "^1.2.8",
"@swc/cli": "^0.4.1-nightly.20240914",
"@swc/core": "^1.7.26",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.3.1",
"@types/react": "^19.0.10",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"swc-loader": "^0.2.6",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vite-plugin-node": "^4.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "app",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}