-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.42 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
64
65
66
67
{
"name": "smooth-web3-backend",
"version": "1.0.0",
"description": "web2 to web3 converter",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"debug-docker": "docker-compose -f docker-compose.private.yml down && docker-compose -f docker-compose.private.yml up",
"stop-docker": "docker-compose -f docker-compose.private.yml down",
"clean-docker": "docker-compose -f docker-compose.private.yml down && docker volume prune",
"test-pub-tools": "npx tsc && ./node_modules/mocha/bin/mocha.js --timeout 2000 --ui bdd ./dist/test/test-pub-tools.js",
"test-sign-extract": "npx tsc && ./node_modules/mocha/bin/mocha.js --timeout 2000 --ui bdd ./dist/test/test-sign-extract.js",
"test-emial-sender": "npx tsc && ./node_modules/mocha/bin/mocha.js --timeout 2000 --ui bdd ./dist/test/test-email-sender.js",
"test-get-reminder-infos": "npx tsc && ./node_modules/mocha/bin/mocha.js --timeout 20000 --ui bdd ./dist/test/test-get-reminder-infos.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atocha-protocol/express-ts-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atocha-protocol/express-ts-template/issues"
},
"homepage": "https://github.com/atocha-protocol/express-ts-template#readme",
"dependencies": {
"@polkadot/api": "^9.10.2",
"@polkadot/react-identicon": "^2.9.14",
"@polkadot/types": "^9.10.2",
"@polkadot/util": "^10.2.1",
"@polkadot/util-crypto": "^10.2.1",
"arweave": "^1.11.6",
"axios": "^1.2.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-session": "^1.17.3",
"md5": "^2.3.0",
"memorystore": "^1.6.7",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"sha256": "^0.2.0",
"twit": "^2.2.11",
"twitter-api-sdk": "^1.1.0",
"twitter-v1-oauth": "^1.0.15"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/md5": "^2.3.2",
"@types/node": "^18.6.4",
"@types/sha256": "^0.2.0",
"concurrently": "^7.3.0",
"mocha": "^10.0.0",
"mocha-typescript": "^1.1.17",
"nodemon": "^2.0.19",
"should": "^13.2.3",
"supertest": "^6.2.4",
"testweave-sdk": "^0.2.2",
"typescript": "^4.7.4"
}
}