-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.36 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "topia-graphql-api",
"version": "0.0.1",
"description": "Backend GraphQL server for Topia and more",
"main": "./dist/index.js",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "0.0.13",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/faker": "^4.1.12",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.16.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.2",
"@types/uuid": "^7.0.4",
"apollo-server": "^2.15.0",
"apollo-server-express": "^2.18.2",
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"connect": "^3.7.0",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"form-data": "^3.0.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"handlebars": "^4.7.6",
"html-pdf-node": "^1.0.5",
"ioredis": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.10",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"slugify": "^1.4.6",
"standard": "^14.3.4",
"stripe": "^8.102.0",
"ts-node-dev": "^1.0.0-pre.49",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"type-graphql": "^1.0.0-rc.3",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.9.5",
"web3": "^1.2.9",
"wkhtmltopdf": "^0.3.4"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"standard --fix",
"git add"
]
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"apollo": "^2.28.3",
"apollo-server-testing": "^2.19.0",
"chai": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.5.2",
"mocha": "^8.2.1",
"node-fetch": ">=2.6.1",
"object-path": ">=0.11.5",
"ts-node": "^8.10.2",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0"
},
"scripts": {
"test": "NODE_ENV=test mocha --exit -r ts-node/register resolvers/*.test.ts",
"start": "ts-node-dev --project ./tsconfig.json --respawn ./index.ts",
"serve": "pm2 startOrRestart ecosystem.config.js"
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"author": "James Farrell",
"license": "ISC"
}