-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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": "mythic",
"version": "1.0.0",
"description": "A TypeScript, express and GraphQL boilerplate",
"main": "./src/server",
"scripts": {
"build": "tsc",
"start": "nodemon"
},
"author": "Jonas Anker Jahr",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.4",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.16.1",
"@types/express-rate-limit": "^3.3.0",
"@types/graphql": "^14.2.0",
"@types/helmet": "0.0.43",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^11.13.5",
"@types/uuid": "^3.4.4",
"nodemon": "^1.18.11",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
},
"dependencies": {
"ajv": "^6.10.0",
"apollo-server-express": "^2.19.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"env": "github:ankerdev/env",
"express": "^4.16.4",
"express-rate-limit": "^3.4.1",
"graphql": "^14.2.1",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"lodash.merge": "^4.6.2",
"mysql2": "^1.6.5",
"objection": "^1.6.8",
"uuid": "^3.3.2"
}
}