forked from yyx990803/build-your-own-mint
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 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
60
61
62
63
{
"name": "build-your-own-mint",
"private": false,
"main": "index.js",
"author": {
"name": "Benjamin Cooper",
"email": "[email protected]",
"url": "https://benc.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencooper22/build-your-own-mint.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint --ext .ts lib/ scripts/",
"lint-fix": "eslint --fix --ext .ts lib/ scripts/",
"get": "ts-node lib/index.ts --public",
"decrypt": "ts-node scripts/encryption/decryptSecret.ts",
"encrypt": "ts-node scripts/encryption/encryptSecret.ts",
"get-private": "ts-node lib/index.ts",
"debug": "ts-node --nolazy --inspect-brk=9229 lib/index.ts",
"test-plaid": "ts-node scripts/testPlaid.ts",
"test-sheets": "ts-node scripts/testSheets.ts",
"token-plaid": "ts-node scripts/plaidServer.ts",
"token-sheets": "ts-node scripts/getSheetsToken.ts",
"push-env": "ts-node scripts/pushEnv.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"currency.js": "^1.2.2",
"dotenv": "^8.0.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"full-icu": "^1.3.4",
"googleapis": "^72",
"isomorphic-git": "^1.8.2",
"moment": "^2.29.1",
"open": "^6.4.0",
"openpgp": "^4.10.10",
"plaid": "^8.2.1",
"twilio": "^3.61.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^13.13.50",
"@types/node-fetch": "^2.5.10",
"@types/openpgp": "^4.4.15",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"prettier": "^1.19.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.9"
},
"volta": {
"node": "14.16.1"
}
}