-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "FaerieKingdom",
"version": "1.0.0",
"main": "index.js",
"author": "elysiaEgo",
"license": "MIT",
"scripts": {
"build": "prisma format && prisma generate && prisma migrate dev && tsc",
"watch": "concurrently \"prisma generate --watch\" \"tsc --watch\" \"nodemon ./build/index.js\"",
"serve": "node ./build/index.js"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/jsrsasign": "^10.5.7",
"@types/koa": "^2.13.6",
"@types/koa-json": "^2.0.20",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^4.0.0",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"concurrently": "^8.0.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"typescript": "*"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@prisma/client": "^4.11.0",
"axios": "^1.3.4",
"crc-32": "^1.2.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"jsrsasign": "^10.7.0",
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.4",
"koa-router": "^12.0.0",
"log4js": "^6.9.1",
"prisma": "^4.11.0",
"uuid": "^9.0.0"
}
}