-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.04 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"//": "",
"type": "module",
"name": "icebreak",
"version": "1.0.0",
"description": "simple blog API on node.js with minimal requirements",
"engines": {
"node": ">=16.19",
"npm": ">=9.7"
},
"main": "src/app.ts",
"homepage": "https://github.com/cgencer/assignment-icebreaker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cgencer/assignment-icebreaker.git"
},
"scripts": {
"nodemon": "nodemon --config nodemon.json src/app.ts",
"start": "cp src/config/*.json dist/config/. && tsc && NODE_ENV=dev node dist/app.js",
"dev": "cp src/config/*.json dist/config/. && ts-node-dev --respawn --pretty --transpile-only src/app.ts",
"deva": "cp src/config/*.json dist/config/. && nodemon -x node --loader ts-node/esm src/app.ts",
"clean": "rm -r dist/*",
"docs:build": "make",
"docs:report": "newman run postman/*.json -r htmlextra --reporter-htmlextra-export docs/api-report.html --reporter-htmlextra-browserTitle 'IceBreaker API Report' --reporter-htmlextra-title 'IceBreaker API Report' --reporter-htmlextra-omitHeaders",
"docs:todo": "grep '//TODO: ' -r -n --exclude-dir={dist,node_modules,.git,lib} --exclude={'*bundle.js','*.map','*.min.js','*.csv',todos.txt} ./src/ > ./docs/todos.txt;grep '//FIXME: ' -r -n --exclude-dir={dist,node_modules,.git,lib} --exclude={'*bundle.js','*.map','*.min.js','*.csv',todos.txt} ./src/ > ./docs/urgent.txt",
"configs": "cp src/config/*.json dist/config/.",
"db:build": "sequelize-auto -c .sequelizeautoconfig.json",
"db:create": "sequelize-cli db:create",
"db:migrate": "sequelize-cli db:migrate",
"db:g:migration": "sequelize-cli migration:generate --name",
"db:g:seed": "sequelize-cli seed:generate --name",
"db:seeds": "sequelize-cli db:seed:all",
"db:undo": "sequelize-cli db:seed:undo",
"db:g:models": "sequelize model:generate",
"test": "mocha --timeout 10000",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"dependencies": {
"@apollo/server": "^4.9.1",
"@keenondrums/singleton": "^1.0.0",
"@trpc/server": "^10.37.1",
"bcrypt": "^5.1.0",
"compress": "^0.99.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-validator": "^6.12.2",
"firestore-sequelize": "^0.8.0",
"fs": "^0.0.1-security",
"graphql": "^16.8.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"next-auth": "^4.23.1",
"ngrok": "^5.0.0-beta.2",
"path": "^0.12.7",
"pg": "^8.11.2",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.1.13",
"rotating-file-stream": "^3.1.1",
"sequelize": "^6.32.1",
"sequelize-auto": "^0.8.8",
"sequelize-typescript": "^2.1.5",
"sequelizr": "^3.0.75",
"throttled-queue": "^2.1.4",
"tunnel-ssh": "^5.1.1",
"zod": "^3.22.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.5",
"@types/compression": "^1.7.2",
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.197",
"@types/method-override": "^0.0.32",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.4",
"@types/nanoid": "^3.0.0",
"@types/node": "^16.18.46",
"@types/pino": "^7.0.5",
"@types/sinon": "^10.0.12",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"express-list-routes": "^1.1.5",
"fs-extra": "^11.1.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"sequelize-cli": "^6.6.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-hooks": "^1.1.2",
"typescript": "^5.1.6"
},
"license": "ISC"
}