-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.26 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "strike",
"version": "0.0.1",
"description": "Strike is a autonomous system making use of quadratic voting mechanisms",
"main": "./src/listen.mjs",
"scripts": {
"build:frontend": "esbuild ./client/src/VotingApp.mjs --minify --bundle --format=esm --outfile=./src/public/bundle.js",
"watch:frontend": "esbuild ./client/src/VotingApp.mjs --bundle --format=esm --outfile=./src/public/bundle.js --watch",
"watch:server": "nodemon --ext 'mjs'",
"format": "prettier --check \"**/*.mjs\"",
"format:write": "prettier --write \"**/*.mjs\"",
"dev": "concurrently \"npm run watch:server\" \"npm run watch:frontend\"",
"test": "ava --serial --verbose",
"connect": "source .env && ssh root@$IPV4",
"deploy": "source .env && rsync -avz . root@$IPV4:./strike --exclude \"strike.db\" --exclude=\"node_modules\" --exclude=\".git\"",
"run:no_email": "NODE_ENV=test nohup node ./src/listen.mjs &"
},
"ava": {
"nodeArguments": [
"--loader=esmock",
"--no-warnings"
],
"files": [
"test/**/*",
"!test/utils.mjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimDaub/strike.git"
},
"keywords": [
"quadratic",
"voting",
"strike",
"hito",
"steyerl",
"performance",
"ethereum",
"goerli"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TimDaub/strike/issues"
},
"homepage": "https://github.com/TimDaub/strike#readme",
"dependencies": {
"better-sqlite3": "7.4.3",
"bs58": "4.0.1",
"cron": "1.8.2",
"cross-fetch": "3.1.4",
"date-fns": "2.28.0",
"dotenv": "10.0.0",
"fastify": "3.22.0",
"fastify-formbody": "5.2.0",
"fastify-static": "4.5.0",
"htm": "3.1.0",
"jss": "10.9.0",
"jss-preset-default": "10.9.0",
"ksuid": "2.0.0",
"lodash.template": "4.5.0",
"markdown-it": "12.2.0",
"mjml": "4.11.0",
"nodemailer": "6.6.3",
"preact": "10.6.4",
"preact-nominal-allocator": "0.0.2",
"vhtml": "2.2.0"
},
"devDependencies": {
"ava": "3.15.0",
"concurrently": "7.0.0",
"esbuild": "0.14.11",
"esmock": "0.4.0",
"nodemon": "2.0.13",
"prettier": "^2.5.1"
}
}