-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "polkadot-education-api",
"version": "0.0.2",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"test": "bun run test:mongodb:setup; NODE_ENV=test jest $TEST_FILE; bun run test:mongodb:rm",
"test:mongodb:setup": "bun run test:mongodb:rm; bun run test:mongodb:run",
"test:mongodb:rm": "docker rm -f doteducation-mongodb-test",
"test:mongodb:run": "docker run --name doteducation-mongodb-test -p 27777:27017 -dti mongo:7.0.5-jammy",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build": "tsup",
"start": "node dist/index.js"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.658.1",
"@polkadot/util-crypto": "^13.1.1",
"@typegoose/typegoose": "^12.3.1",
"axios": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.6.4"
},
"module": "src/index.js",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"tsx": "^4.7.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.7.0"
}
}