-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "supertokens-nestjs",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"start:express": "(cd ./examples/react-frontend && npm run start) & (cd ./examples/express-backend && npm run start) & wait",
"start:fastify": "(cd ./examples/react-frontend && npm run start) & (cd ./examples/fastify-backend && npm run start) & wait",
"start:graphql": "(cd ./examples/react-frontend && npm run start) & (cd ./examples/graphql-backend && npm run start) & wait",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.21.2"
},
"peerDependencies": {
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-fastify": "^11.0.6",
"supertokens-node": "^21.1.0"
},
"peerDependenciesMeta": {
"@nestjs/platform-express": {
"optional": true
},
"@nestjs/platform-fastify": {
"optional": true
}
},
"devDependencies": {
"@nestjs/platform-express": "^11.0.7",
"@nestjs/testing": "^11.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}