-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "pw-sdk-nodejs-server-internal",
"version": "1.0.0",
"description": "Sample BE with PW server-side SDK",
"main": "index.ts",
"scripts": {
"env:config": "cp .env.sample .env",
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "tsx watch src/index.ts",
"start": "npx ts-node src/index.ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prepare": "husky"
},
"author": "@circle-fin",
"license": "ISC",
"dependencies": {
"@circle-fin/user-controlled-wallets": "^4.1.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yup": "^1.3.3"
},
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsx": "4.19.2"
},
"packageManager": "yarn@1.22.19"
}