-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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": "praktikumsboerse",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && cp src/schema/*.graphql dist/schema",
"build:windows": "tsc && robocopy src/schema dist/schema *.graphql /njh /njs /ndl /nc /ns",
"start": "node dist/index.js",
"docker": "docker-compose up -d",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d && echo \"MongoDB :27017, MongoDB Admin: :8089\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/INF16A/ws-graphql.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/INF16A/ws-graphql/issues"
},
"homepage": "https://github.com/INF16A/ws-graphql#readme",
"devDependencies": {
"@types/express": "^4.11.1",
"@types/graphql": "^0.12.4",
"@types/jsonwebtoken": "^7.2.5",
"@types/mongodb": "^3.0.5",
"@types/node": "^9.4.6",
"@types/nodemailer": "^4.3.4",
"typescript": "^2.7.2"
},
"dependencies": {
"@google/maps": "^0.4.5",
"@types/express-graphql": "0.0.36",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"express-graphql": "^0.6.12",
"graphql": "^0.13.1",
"graphql-errors": "^2.1.0",
"jsonwebtoken": "^8.1.1",
"mongodb": "^3.0.2",
"nodemailer": "^4.6.2",
"source-map-support": "^0.5.3"
}
}