-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "salesforce-postgres-sync",
"version": "0.0.1",
"description": "This is a test project for testing Salesforce and Postgres Bidirectional Sync",
"main": "index.js",
"scripts": {
"lint": "eslint ./app --fix",
"dev": "NODE_OPTIONS=\"--max-old-space-size=4096\" nodemon -r dotenv/config ./app/index.js",
"start": "NODE_OPTIONS=\"--max-old-space-size=4096\" node -r dotenv/config dist/index.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress --profile",
"postinstall": "husky install",
"test": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles",
"docker:build": "docker build . --build-arg PACKAGE_VERSION=$(node -p \"require('./package.json').version\") --build-arg NODE_ENV=production --target production-stage -t chrisleekr/salesforce-postgres-sync:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisleekr/salesforce-postgres-sync.git"
},
"author": "Chris Lee <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/chrisleekr/salesforce-postgres-sync/issues"
},
"homepage": "https://github.com/chrisleekr/salesforce-postgres-sync#readme",
"dependencies": {
"axios": "^1.6.5",
"bunyan": "^1.8.15",
"config": "^3.3.9",
"cron": "^3.1.6",
"cross-env": "^7.0.3",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"moment": "^2.30.1",
"moment-timezone": "^0.5.44",
"pg": "^8.11.3",
"pg-copy-streams": "^6.0.6",
"qs": "^6.11.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/preset-env": "^7.23.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"branch-name-lint": "^2.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint",
"git add -A .",
"npm run test"
]
}
}