-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.64 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.64 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
{
"name": "seamless-auth-express-demo",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"author": "Fells Code LLC",
"license": "AGPL-3.0-only",
"scripts": {
"dev": "NODE_ENV=development node scripts/runMigrations.js && tsx watch src/index.ts",
"build": "tsc -p .",
"start": "NODE_ENV=production node scripts/runMigrations.js && node dist/src/index.js",
"db:create": "sequelize-cli db:create",
"migrate": "sequelize-cli db:migrate --config config/config.js",
"docker:up": "docker-compose up --build",
"docker:down": "docker-compose down -v",
"docker:logs": "docker-compose logs -f api",
"lint": "npx eslint src"
},
"dependencies": {
"@seamless-auth/express": "^0.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"winston": "^3.18.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.25",
"@types/pg": "^8.15.6",
"@types/sequelize": "^4.28.20",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.3.0",
"typescript-eslint": "^8.47.0"
}
}