generated from ShenyiCui/express-postgres-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "express-postgres-template",
"version": "1.0.0",
"description": "Express Postgres API Template",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/server.ts",
"start": "node build/src/server.js",
"build": "tsc",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"db:create": "sequelize-cli db:create",
"db:migrate": "sequelize-cli db:migrate",
"db:drop": "sequelize-cli db:drop",
"db:migrate:undo": "sequelize-cli db:migrate:undo:all",
"db:g:migration": "sequelize-cli migration:generate --name",
"db:seed": "sequelize-cli db:seed:all",
"db:unseed": "sequelize-cli db:seed:undo:all",
"db:reset": "node scripts/resetDb.js && npm run db:seed",
"db:reseed": "npm run db:migrate && npm run db:migrate:undo && npm run db:migrate && npm run db:seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShenyiCui/express-postgres-template.git"
},
"author": "Shenyi Cui",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShenyiCui/express-postgres-template/issues"
},
"homepage": "https://github.com/ShenyiCui/express-postgres-template#readme",
"dependencies": {
"@google-cloud/storage": "^6.9.4",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-auth-library": "^8.7.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.28.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.19",
"gts": "^3.1.1",
"sequelize-cli": "^6.6.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}