-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "hikari-app-api",
"version": "1.0.0",
"main": "dist/server.js",
"author": "SDMasterGames <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/SDMasterGames/hikari-api-app.git"
},
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --transpile-only --exit-child src/server.ts",
"build": "yarn tsc --build",
"build:clean": "yarn tsc --build --clean",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier --write ."
},
"devDependencies": {
"@swc/core": "^1.2.203",
"@swc/jest": "^0.2.21",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.41",
"@types/supertest": "^2.0.12",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"prisma": "^4.0.0",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@prisma/client": "^4.0.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ioredis": "^5.0.6",
"jsonwebtoken": "^8.5.1"
}
}