-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 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
{
"name": "polkadot-education-api",
"version": "0.0.2",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"test": "NODE_ENV=test bun test $TEST_FILE",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build": "tsup && bun run sentry:sourcemaps",
"start": "node dist/index.js",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org polkadot-education --project api ./dist && sentry-cli sourcemaps upload --org polkadot-education --project api ./dist"
},
"dependencies": {
"@getbrevo/brevo": "^3.0.1",
"@polkadot-api/signer": "^0.2.8",
"@polkadot-labs/hdkd": "^0.0.24",
"@polkadot-labs/hdkd-helpers": "^0.0.25",
"@polkadot/util-crypto": "^13.5.6",
"@sentry/cli": "^2.53.0",
"@sentry/node": "^10.11.0",
"@typegoose/typegoose": "^13.1.0",
"axios": "^1.12.1",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.2",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.18.1",
"node-cron": "^3.0.3"
},
"module": "src/index.js",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.23",
"@types/jsonwebtoken": "^9.0.10",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^15.15.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
}
}