-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.45 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.45 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
{
"name": "js-api",
"version": "1.0.0",
"description": "NodeJS TypeScript API",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start:test": "NODE_ENV=test node dist/index.js",
"dev": "nodemon",
"dev:win": "cross-env NODE_ENV=development nodemon",
"dev:db": "NODE_ENV=development nodemon",
"build": "tsc",
"lint": "eslint src/**/*.{ts,tsx}",
"migrate:all": "ts-node src/scripts/run-all-migrations.ts",
"migrate:init": "ts-node src/scripts/init-database.ts",
"migrate:status": "ts-node src/scripts/migrate-status.ts",
"migrate:undo": "ts-node src/scripts/migrate-undo.ts",
"migrate:create": "ts-node src/scripts/create-migration.ts",
"seed": "ts-node src/scripts/run-seeder.ts",
"seed:test": "NODE_ENV=test ts-node src/scripts/run-seeder.ts",
"db:seed:dev": "cross-env NODE_ENV=development ts-node src/scripts/run-seeder.ts",
"db:seed:dev:all": "cross-env NODE_ENV=development ts-node src/scripts/run-seeder-all.ts",
"db:seed:test": "cross-env NODE_ENV=test ts-node src/scripts/run-seeder.ts",
"deploy:mochahost": "ts-node scripts/deploy-mochahost.ts",
"test": "cross-env NODE_ENV=test jest",
"db:drop:tables": "ts-node src/scripts/drop-tables.ts",
"db:drop:records": "ts-node src/scripts/drop-records.ts",
"db:reset": "cross-env NODE_ENV=development npm run db:drop:tables && npm run migrate:all && npm run db:seed:dev",
"db:reset:all": "cross-env NODE_ENV=development npm run db:drop:tables && npm run migrate:all && npm run db:seed:dev:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonbarlo/node-js-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonbarlo/node-js-api/issues"
},
"homepage": "https://github.com/jonbarlo/node-js-api#readme",
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@types/bcrypt": "^5.0.2",
"@types/mssql": "^9.1.7",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^8.0.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mssql": "^11.0.1",
"nodemon": "^3.1.10",
"pg": "^8.16.2",
"pg-hstore": "^2.3.4",
"puppeteer": "^22.0.0",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tedious": "^18.6.1",
"umzug": "^3.8.2",
"uuid": "^11.1.0",
"i18next": "^23.10.0",
"i18next-http-middleware": "^3.5.0",
"i18next-fs-backend": "^2.3.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.4",
"@types/sequelize": "^4.28.20",
"@types/supertest": "^6.0.3",
"@types/i18next": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"basic-ftp": "^5.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.29.0",
"jest": "^30.0.3",
"sequelize-cli": "^6.6.3",
"sqlite3": "^5.1.7",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}