-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 4.25 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "autism-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"_moduleAliases": {
"@models": "src/models",
"@services": "src/services",
"@util": "src/util",
"~": "lib",
"#": "static"
},
"scripts": {
"dev-server": "nodemon ./build/server.js",
"watch-server": "webpack --config webpack.server.config.js --watch",
"build": "webpack --config webpack.server.config.js",
"dev": "NODE_ENV=development concurrently --kill-others-on-fail npm:watch-server npm:dev-server",
"start": "NODE_ENV=production npm run build && node ./build/server.js",
"start:dev": "NODE_ENV=development npm run build && npm run dev-server",
"test": "FORCE=true NODE_ENV=test TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' tape -r module-alias/register -r ts-node/register './src/**/*.test.ts' | tap-spec",
"test:coverage": "nyc npm run test",
"test:some": "_some() { find ./src -path *$1*.test.ts -exec tape -r ts-node/register {} \\; | tap-spec; }; FORCE=true NODE_ENV=test TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' _some",
"fix": "npm run lint:fix && npm run format:fix",
"format:check": "prettier --check .",
"format:ci": "prettier --check 'src/**/*.ts' --loglevel warn",
"format:fix": "prettier -w .",
"lint:check": "eslint . --ext .js,.ts",
"lint:ci": "eslint . --ext .js,.ts --quiet",
"lint:fix": "eslint . --ext .js,.ts --fix",
"validate": "concurrently tsc 'npm run lint:check' 'npm run format:check' 'npm run test' 'npm run build'",
"prepare": "is-ci || is-docker || husky install",
"docker:dev": "docker compose -f docker-compose.yaml -f docker-compose.dev.yaml up --build zkitterd",
"docker:prod": "docker compose -f docker-compose.yaml -f docker-compose.prod.yaml up --build zkitterd"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ensdomains/ensjs": "^2.0.1",
"@interep/reputation": "^0.4.0",
"@r1oga/passport-reddit": "^1.0.0",
"@types/passport-twitter": "^1.0.37",
"@zk-kit/identity": "^1.4.1",
"@zk-kit/protocols": "^1.11.1",
"async-mutex": "^0.3.1",
"bn.js": "^5.2.0",
"body-parser": "^1.19.0",
"botometer": "^1.0.12",
"connect-session-sequelize": "^7.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.1.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.2",
"gun": "0.2020.1232",
"http-terminator": "^3.2.0",
"ipfs-http-client": "56.x",
"is-ci": "^3.0.1",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"link-preview-js": "^2.1.8",
"link-preview-node": "^1.0.7",
"lru-cache": "^6.0.0",
"module-alias": "^2.2.2",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"oauth-1.0a": "^2.2.6",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-twitter": "^1.0.4",
"pg": "^8.7.1",
"semaphore-lib": "git+https://github.com/akinovak/semaphore-lib.git#dev",
"sequelize": "6.26",
"sqlite3": "^5.1.2",
"web3": "^1.3.5",
"web3.storage": "^4.3.0",
"winston": "^3.3.3",
"zk-chat-server": "^1.0.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/cors": "^2.8.10",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.2.2",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.6",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.37",
"@types/passport": "^1.0.11",
"@types/passport-github2": "^1.2.5",
"@types/sinon": "^10.0.11",
"@types/tape": "^4.13.2",
"@zkitter/eslint-config": "^1.0.2",
"@zkitter/prettier-config": "1.0.0",
"concurrently": "^6.2.0",
"csv": "^6.0.5",
"husky": "^8.0.0",
"node-loader": "^2.0.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"source-map-support": "^0.5.21",
"tap-diff": "^0.1.1",
"tap-spec": "^5.0.0",
"tape": "^5.5.2",
"ts-loader": "^6.2.1",
"ts-node": "^10.7.0",
"typescript": "^4.3.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=16 <17"
}
}