forked from digitalocean/sample-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "financial_vue_be_do",
"version": "0.1.0",
"private": true,
"main": "app.js",
"scripts": {
"serve-app": "nodemon app.js",
"plaid-start-dev": "set PLAID_ENV=development&& node scripts/plaidServer.js",
"plaid-start-sand": "set PLAID_ENV=sandbox&& node scripts/plaidServer.js",
"seed-db": "node seed",
"start": "node app.js"
},
"scriptComments": {
"get-accounts": "PLAID_ENV=development node tests/getAccounts.js",
"update-balances": "PLAID_ENV=development node tests/updateBalances.js",
"update-transactions": "PLAID_ENV=development node tests/updateTransactions.js",
"space-0": "",
"get-accounts-sand": "PLAID_ENV=sandbox node tests/getAccounts.js",
"update-balances-sand": "PLAID_ENV=sandbox node tests/updateBalances.js",
"update-transactions-sand": "PLAID_ENV=sandbox node tests/updateTransactions.js",
"space-1": "",
"test-plaid": "node tests/plaid.js",
"test-env": "node tests/writeEnvVar",
"test-sequelize": "node tests/sequelize.js"
},
"dependencies": {
"@formulajs/formulajs": "2.6.1",
"axios": "0.21.1",
"bcrypt": "5.0.0",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"cors": "2.8.5",
"dayjs": "1.9.8",
"dotenv": "8.2.0",
"ejs": "3.1.5",
"express": "4.17.1",
"joi": "17.3.0",
"jsonwebtoken": "8.5.1",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"plaid": "8.1.2",
"sequelize": "6.3.5",
"pg": "8.5.1",
"sqlite3": "5.0.0"
},
"devDependencies": {
"morgan": "1.10.0",
"nodemon": "2.0.6"
}
}