-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.58 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 4.58 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "powerback",
"version": "1.0.0",
"description": "Small-dollar political donation platform tying campaign contributions to legislative action.",
"main": "server.js",
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:coverage": "jest --coverage --runInBand",
"test:client": "npm test --prefix client",
"test:all": "npm run test && npm run test:client",
"smoke": "bash scripts/deploy/smoke.sh",
"smoke:fast": "bash scripts/deploy/smoke.sh --no-build",
"smoke:e2e": "bash scripts/deploy/smoke.sh --e2e",
"dev": "npm run validate:env && concurrently \"nodemon --ignore 'client/*'\" \"npm run client\" \"npm run start:watchers\" \"npm run stripe:listen\"",
"client": "npm start --prefix client",
"start:watchers": "node jobs/runWatchers.js",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhooks/stripe",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "node scripts/clean.js",
"validate:env": "node scripts/validate-environment.js",
"setup:remote-dev": "node dev/setup-remote-dev-env.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/POWERBACKus/powerback.git"
},
"keywords": [
"corruption",
"donation",
"democracy",
"representatives",
"conditional",
"congress",
"america",
"politics",
"nonpartisan",
"independent",
"government",
"election",
"candidate",
"vote",
"activism",
"protest"
],
"author": "first_citizen",
"license": "GPL",
"bugs": {
"url": "https://github.com/POWERBACKus/powerback/issues"
},
"dependencies": {
"@scure/bip32": "^2.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "^29.2.4",
"accounting": "^0.4.1",
"axios": "^1.2.0-alpha.1",
"bcryptjs": "^2.4.3",
"bitcoinjs-lib": "^7.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^6.6.0",
"helmet": "^8.1.0",
"history": "^4.10.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.1",
"mongodb": "^4.1.3",
"mongoose": "^6.13.8",
"nanoid": "^3.1.30",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.12",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"stripe": "^8.193.0",
"superagent": "^7.1.1",
"tiny-secp256k1": "^2.2.4",
"twilio": "^5.5.2",
"url-join": "^5.0.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-proposal-private-property-in-object": "",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@playwright/test": "^1.55.0",
"@types/accounting": "^0.4.2",
"@types/babel-core": "^6.25.7",
"@types/bcryptjs": "^2.4.2",
"@types/bootstrap": "^5.2.6",
"@types/bootstrap-slider": "^11.0.2",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.191",
"@types/node": "^20.19.35",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.7",
"@types/npm": "^7.19.0",
"@types/passport": "^1.0.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-router": "^5.1.19",
"@types/superagent": "^4.1.16",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"concurrently": "^6.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^30.0.4",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^2.0.7",
"prettier": "^3.8.1",
"rimraf": "^5.0.10",
"supertest": "^7.1.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.5"
}
}