-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "ton-vote-server",
"private": false,
"version": "1.0.3",
"homepage": "https://ton.vote/",
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint . --ext .ts,.tsx -f codeframe",
"clean": "rimraf ./dist/",
"prebuild": "npm run clean",
"build": "npm i && tsc --skipLibCheck -p ./tsconfig.json",
"prepack": "npm run build",
"prettify": "npx prettier \"src/**/*.ts\" --write && npx prettier \"e2e/**/*.ts\" --write",
"start": "npm run build && node ./dist/main.js",
"heroku-dev": "git push heroku-dev dev:main",
"heroku-prod": "git push heroku main"
},
"dependencies": {
"@orbs-network/ton-access": "^2.2.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/lodash": "^4.14.194",
"backoff": "^2.5.0",
"bignumber.js": "^9.1.1",
"bson": "^5.3.0",
"buffer": "^6.0.3",
"compression": "1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "4.18.2",
"flatted": "^3.2.7",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"ton": "^13.4.1",
"ton-vote-contracts-sdk": "^1.7.9",
"typescript": "^4.9.5"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"@types/node-fetch": "^2.6.4"
}
}