forked from LinusBolls/code-library-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
50
51
52
53
54
{
"name": "code-library-server",
"version": "1.0.0",
"description": "The GraphQl API of the CODE University of Applied Sciences Library Management System",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"dockerBuild": "docker-compose build",
"dockerStart": "docker-compose up",
"updatePerms": "npm uninstall code-library-perms && npm i --S https://github.com/LinusBolls/code-library-perms.git",
"prepare": "npx swc src -d dist",
"build": "npx swc src -d dist",
"prestart": "npx swc src -d dist",
"start": "node dist",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinusBolls/code-library-server.git/"
},
"author": "https://github.com/LinusBolls/",
"license": "ISC",
"bugs": {
"url": "https://github.com/LinusBolls/code-library-server/issues"
},
"homepage": "https://github.com/LinusBolls/code-library-server#readme",
"dependencies": {
"apollo-server": "^3.6.2",
"axios": "^0.25.0",
"chalk": "^4.1.2",
"code-library-perms": "github:LinusBolls/code-library-perms",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.0",
"papaparse": "^5.3.1",
"regenerator-runtime": "^0.13.9",
"zod": "^3.11.6"
},
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.141",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
},
"engines": {
"node": "16.x"
}
}