-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
{
"private": true,
"type": "commonjs",
"name": "@dynamored/everybook",
"description": "Main API for Everybook services",
"version": "beta-1.0.0",
"homepage": "https://github.com/Groupe-1-ODC/Apollon/README.md",
"license": "GPL-3.0",
"main": "./src/app",
"packageManager": "[email protected]",
"scripts": {
"start": "ts-node src/app.ts",
"test": "testyts",
"production": "docker build ."
},
"bugs": {
"url": "https://github.com/Groupe-1-ODC/Apollon/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Raphael",
"url": "https://dynamored.com",
"email": "[email protected]"
},
{
"name": "Maram",
"email": "[email protected]"
},
{
"name": "Corentin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Groupe-1-ODC/Apollon.git"
},
"engines": {
"node": ">=16.10",
"npm": ">=8.0.0"
},
"directories": {
"lib": "./libs",
"doc": "./docs",
"test": "./src/specs",
"src": "./src"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"js-sha512": "^0.8.0",
"jsonwebtoken": "^9.0.0",
"nodemon": "^2.0.20",
"pg": "^8.9.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.14.1",
"express": "^4.18.2"
}
}