-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "js_app_deploy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"go": "yarn && yarn start > log.txt | tail -f log.txt | yarn test:api ",
"test": "node tests/test-one-round.js",
"start": "node index.js",
"prod-debug": "nodemon --ignore 'dist/*' prod-debug.js",
"webpack": "webpack",
"webpack:test": "webpack --config test.webpack.config.js",
"webpack:prod": "webpack --mode production",
"webpack:deploy": "yarn webpack:prod && yarn deploy",
"deploy": "yarn install && yarn webpack && npx @_koii/create-task-cli@latest",
"whammy": "yarn webpack:deploy",
"jest": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@_koi/web3.js": "^0.0.6",
"@_koii/storage-task-sdk": "1.2.7",
"@lit-protocol/lit-node-client": "^2.2.63",
"aws-sdk": "^2.1659.0",
"axios": "^1.3.6",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"cid": "multiformats/cid",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.7.0",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"html-loader": "^5.0.0",
"jest": "^29.7.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"mock-aws-s3": "^4.0.2",
"nedb-promises": "^6.2.1",
"needle": "^3.2.0",
"nock": "^13.5.4",
"node-cron": "^3.0.2",
"puppeteer": "^19.11.0",
"puppeteer-chromium-resolver": "^19.1.0",
"request": "^2.88.2",
"rimraf": "^5.0.7",
"selenium-webdriver": "^4.8.2",
"semver": "^7.6.2",
"tail": "^2.2.6",
"twitter-api-v2": "^1.14.2",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
}
}