Skip to content

Commit 6a58016

Browse files
committed
Update dependencies: - Update package.json with latest dependencies
1 parent 8144a06 commit 6a58016

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

package.json

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
"scripts": {
1010
"validate": "npx tsx src/scripts/validate.js",
1111
"migrate": "npx tsx src/scripts/migrate.js",
12-
"start": "npx tsx src/app.js",
13-
"dev": "npx tsx watch src/app.js",
12+
"start": "NODE_ENV=production USE_ENV_FILE=.env.prod npx tsx src/app.js",
13+
"dev": "USE_ENV_FILE=.env.dev npx tsx watch src/app.js",
14+
"local": "NODE_ENV=development USE_ENV_FILE=.env.local npx tsx watch src/app.js",
1415
"format": "prettier --write \"src/**/*.{js,mjs,ts,mts,json,md}\"",
1516
"format:check": "prettier --check \"src/**/*.{js,mjs,ts,mts,json,md}\"",
1617
"lint": "eslint \"src/**/*.{js,ts,mjs,mts}\" --fix",
@@ -23,14 +24,14 @@
2324
"deploy:local": "sh ./scripts/deploy_factory.sh --env=local",
2425
"deploy:testnet": "sh ./scripts/deploy_factory.sh --env=dev",
2526
"deploy:mainnet": "sh ./scripts/deploy_factory.sh --env=prod",
26-
"sync:local": "sh ./scripts/sync.sh --env=local",
27-
"sync:testnet": "sh ./scripts/sync.sh --env=dev",
28-
"sync:mainnet": "sh ./scripts/sync.sh --env=prod",
27+
"sync:local": "sh ./scripts/sync.sh local",
28+
"sync:testnet": "sh ./scripts/sync.sh dev",
29+
"sync:mainnet": "sh ./scripts/sync.sh prod",
2930
"accept-transfer": "sh ./scripts/acceptTransfer.sh",
3031
"setup": "sh setup.sh",
3132
"deseed": "npx tsx src/db/scripts/deseed.js",
32-
"test": "cd chain && forge test --summary && cd ..",
33-
"test-js": "jest --testPathPattern src/tests/unit",
33+
"test:chain": "cd chain && forge test --summary && cd ..",
34+
"test:js": "jest --testPathPattern src/tests",
3435
"test-js-integration": "jest --testPathPattern src/tests/integration"
3536
},
3637
"dependencies": {
@@ -46,14 +47,13 @@
4647
"exceljs": "^4.4.0",
4748
"express": "^4.21.2",
4849
"joi": "^17.13.1",
49-
"lodash": "^4.17.21",
5050
"mongoose": "^7.4.2",
5151
"npx": "^10.2.2",
5252
"rxjs": "^7.8.1",
5353
"solc": "^0.8.20",
5454
"tsx": "^4.7.0",
5555
"xstate": "^4.38.2",
56-
"yauzl": "^3.2.0"
56+
"yauzl": "^2.10.0"
5757
},
5858
"browserslist": [
5959
"defaults",
@@ -71,14 +71,16 @@
7171
"chalk": "4",
7272
"eslint": "^8.56.0",
7373
"eslint-config-prettier": "^9.1.0",
74+
"eslint-import-resolver-node": "^0.3.9",
7475
"eslint-plugin-import": "^2.31.0",
7576
"globals": "^15.8.0",
7677
"husky": "^9.1.6",
78+
"inquirer": "^12.5.0",
7779
"jest": "^29.7.0",
7880
"lint-staged": "^13.0.3",
7981
"prettier": "^2.7.1",
8082
"solhint": "^3.4.1",
81-
"ts-jest": "^29.2.6",
83+
"ts-jest": "^29.1.1",
8284
"typescript": "~5.3.3",
8385
"uuid": "^9.0.0"
8486
},
@@ -91,4 +93,4 @@
9193
"url": "https://github.com/Fairmint/open-captable-protocol/issues"
9294
},
9395
"homepage": "https://github.com/Fairmint/open-captable-protocol#readme"
94-
}
96+
}

0 commit comments

Comments
 (0)