This repository was archived by the owner on Oct 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
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
{
"name": "weebsearch",
"scripts": {
"start": "nodemon ./api/dist/index.js",
"subs": "ts-node typescript-worker/index.ts",
"dev": "npm-run-all --parallel start playground",
"test": "tsc && jest --config=jest.config.js --env node",
"test:worker": "TEST=true && tsc -p typescript-worker && jest --projects typescript-worker --config=jest.config.js --env node",
"test:api": "TEST=true && tsc -p api && jest --projects typescript-worker --config=jest.config.js --env node",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect api/index.ts",
"playground": "graphql playground",
"build": "rimraf dist && tsc",
"build:worker": "tsc -p typescript-worker",
"build:api": "tsc -p api",
"lint:worker": "tslint --project typescript-worker"
},
"dependencies": {
"apollo-server": "^2.2.0",
"ass-compiler": "0.0.9",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.2",
"connect-redis": "^3.4.0",
"dotenv": "^6.0.0",
"express-jwt": "^5.3.1",
"express-rate-limit": "^3.3.1",
"express-session": "^1.15.6",
"fuse.js": "^3.3.0",
"glob": "^7.1.3",
"glob-fs": "^0.1.7",
"graphql-request": "^1.8.2",
"graphql-yoga": "^1.16.7",
"helmet": "^3.15.0",
"immutable": "^4.0.0-rc.12",
"jsonwebtoken": "8.3.0",
"prisma": "^1.20.1",
"prisma-binding": "^2.1.6",
"ramda": "^0.25.0",
"rate-limit-redis": "^1.5.0",
"redis": "^2.8.0",
"robots-txt-parse": "^1.0.1",
"unpack-all": "0.0.4",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/cheerio": "^0.22.9",
"@types/connect-redis": "0.0.7",
"@types/dotenv": "^4.0.3",
"@types/express-jwt": "0.0.40",
"@types/express-rate-limit": "^2.9.3",
"@types/express-session": "^1.15.11",
"@types/fuzzyset.js": "0.0.1",
"@types/jest": "^23.3.9",
"@types/jsonwebtoken": "^7.2.8",
"@types/node": "^10.12.4",
"@types/ramda": "^0.25.41",
"@types/redis": "^2.8.6",
"dotenv-cli": "1.4.0",
"graphql-cli": "^2.17.0",
"gulp": "^3.9.1",
"gulp-typedoc": "^2.2.0",
"jest": "^23.6.0",
"nodemon": "1.18.4",
"npm-run-all": "4.1.3",
"prettier": "^1.15.1",
"prettier-tslint": "^0.4.0",
"rimraf": "2.6.2",
"ts-node": "6.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-immutable": "^4.9.1",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"resolutions": {
"graphql": "^14.0.2",
"**/graphql": "^14.0.2"
}
}