-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "ctznry",
"version": "1.0.0",
"type": "module",
"description": "A decentralized social networking webapp using CTZN.",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"tailwind": "npx tailwindcss-cli@latest build -o static/css/tailwind.css",
"build-prod": "node ./scripts/generate-sw.js && npm run build && NODE_ENV=production npm run tailwind",
"watch": "npm-watch build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"watch": {
"build": {
"patterns": [
"static/**/*.js"
],
"ignore": "static/js/*.build.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pfrazee/ctznry.git"
},
"keywords": [
"ctzn",
"social",
"decentralized",
"p2p"
],
"dependencies": {
"config": "^3.3.3",
"ejs": "^3.1.5",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"rpc-websockets": "^7.4.8",
"subcommand": "^2.1.1",
"ws": "^7.4.2"
},
"devDependencies": {
"npm-watch": "^0.7.0",
"rollup": "^2.36.1"
},
"author": "Paul Frazee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pfrazee/ctznry/issues"
},
"homepage": "https://github.com/pfrazee/ctznry#readme"
}