-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.87 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
{
"name": "google-cloud-sql-nodejs-connector-example",
"version": "0.0.0-dev",
"description": "Examples of using Google Cloud SQL connector for Node.js.",
"license": "ISC",
"author": "Dinko Osrecki",
"private": true,
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"compile": "tsc -p tsconfig.json",
"build": "npm run clean && npm run compile",
"node:dev": "cross-env NODE_ENV=development nodemon",
"mysql2": "npm run node:dev -- src/mysql2.ts",
"mssql": "npm run node:dev -- src/mssql.ts",
"pg": "npm run node:dev -- src/pg.ts",
"knex": "npm run node:dev -- src/knex/index.ts",
"prisma": "npm run node:dev -- src/prisma/index.ts",
"sequelize": "npm run node:dev -- src/sequelize/index.ts",
"typeorm": "npm run node:dev -- src/typeorm/index.ts"
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.0.0",
"@prisma/client": "^5.4.1",
"@sequelize/core": "^7.0.0-alpha.29",
"@types/pg": "^8.10.3",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"knex": "^3.0.1",
"mssql": "^10.0.1",
"mysql2": "^3.6.1",
"pg": "^8.11.3",
"shelljs": "^0.8.5",
"tedious": "^16.4.1",
"ts-node": "^10.9.1",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/mssql": "^9.1.1",
"@types/node": "^18.17.12",
"@types/shelljs": "^0.8.13",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@typescript-eslint/typescript-estree": "^6.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.4.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}