-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "tricktionary-be",
"version": "1.0.1",
"description": "",
"main": "./dist/src/index.js",
"scripts": {
"build": "sh ./scripts/makeElastic.sh",
"start": "node ./dist/src/index.js --unhandled-rejections=strict",
"pre-docs": "rm -rf trex/docs/tricktionary",
"post-docs": "./scripts/copyMarkdown.sh && ./scripts/buildDocs.sh",
"gen-docs": "npx typedoc --theme minimal --plugin typedoc-plugin-markdown src/sockets",
"docs": "npm run pre-docs && npm run gen-docs && npm run post-docs",
"develop": "npm run build && npm run docs && npm start"
},
"engines": {
"node": "12.20.1",
"npm": "6.14.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/story-squad/tricktionary-be.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/story-squad/tricktionary-be/issues"
},
"homepage": "https://github.com/story-squad/tricktionary-be#readme",
"dependencies": {
"@okta/jwt-verifier": "^2.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/uuid": "^8.3.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.3.1",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.2",
"knex-cleaner": "^1.3.1",
"node-cron": "^3.0.0",
"pg": "^8.5.1",
"randomatic": "^3.1.1",
"redis": "^3.1.1",
"socket.io": "^4.3.2",
"socket.io-redis": "^6.0.1",
"stripe": "^8.138.0",
"tslint": "^6.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/http-errors": "^1.8.0",
"@types/knex": "^0.16.1",
"@types/node": "^14.14.35",
"@types/node-cron": "^2.0.3",
"@types/okta__jwt-verifier": "^2.0.0",
"@types/randomatic": "^3.1.3",
"@types/redis": "^2.8.28",
"@types/socket.io": "^3.0.2",
"@types/socket.io-redis": "^1.0.27",
"docusaurus-plugin-typedoc": "^0.11.0",
"jest": "^27.4.5",
"supertest": "^6.1.6",
"ts-node": "^9.1.1",
"typedoc": "^0.22.8",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.4.4"
}
}