-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "crm_object_sync",
"version": "1.0.0",
"description": "Getting started with syncing associations between records",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"prod": "node dist/app.js",
"build": "tsc",
"db-seed": "npx prisma db seed",
"db-init": "npx prisma db push",
"db-view": "npx prisma studio",
"db-migrate": "npx prisma migrate dev",
"ts-node": "ts-node --compiler-options '{\"module\": \"CommonJS\"}'",
"lint": "npx eslint",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hubspot/api-client": "^11.1.0",
"@hubspot/cli-lib": "^4.1.14",
"@ngrok/ngrok": "^0.5.2",
"@prisma/client": "^4.15.0",
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"express": "^4.17.1",
"prompts": "^2.4.2",
"swagger-jsdoc": "^6.2.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@types/express": "^4.17.11",
"@types/jest": "^29.5.14",
"@types/node": "^14.18.63",
"@types/prompts": "^2.4.4",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"prettier": "^3.2.4",
"prisma": "^5.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}