forked from AudiusProject/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.81 KB
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
{
"name": "creator-node",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon --config nodemon.json src/index.ts | ./node_modules/.bin/bunyan || exit 0",
"test": "./scripts/run-tests.sh standalone_creator",
"test:debug": "./scripts/run-tests.sh -d standalone_creator",
"test:ci": "./scripts/run-tests.sh",
"test:local:teardown": "./scripts/run-tests.sh standalone_creator teardown",
"test:teardown": "./scripts/run-tests.sh teardown",
"test:unit": "./scripts/run-tests.sh unit_test",
"coverage": "nyc npm run test",
"report": "nyc report --reporter=html",
"lint": "./node_modules/.bin/standard src/",
"lint-fix": "./node_modules/.bin/standard sr/ --fix"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@audius/libs": "1.2.37",
"JSONStream": "^1.3.5",
"axios": "^0.19.2",
"base64-url": "^2.3.3",
"bl": "^4.1.0",
"body-parser": "^1.18.3",
"bull": "^3.22.8",
"bunyan": "^1.8.15",
"commander": "^6.2.1",
"content-disposition": "^0.5.3",
"convict": "^5.2.0",
"cors": "^2.8.4",
"death": "^1.1.0",
"deferential": "^1.0.0",
"diskusage": "^1.1.3",
"eth-sig-util": "^2.1.0",
"ethereumjs-tx": "2.1.2",
"ethereumjs-util": "^6.2.1",
"ethereumjs-wallet": "0.6.5",
"exif-parser": "^0.1.12",
"express": "^4.16.3",
"express-rate-limit": "5.3.0",
"ffmpeg-static": "^2.7.0",
"ffprobe-static": "^3.0.0",
"form-data": "^3.0.1",
"fs-extra": "^9.1.0",
"hashids": "^2.2.8",
"ioredis": "^4.27.5",
"ipfs-http-client": "33.1.1",
"ipfs-http-client-latest": "npm:[email protected]",
"ipfs-unixfs-importer": "9.0.6",
"jimp": "^0.6.1",
"lodash": "4.17.21",
"multer": "^1.4.0",
"pg": "^8.0.3",
"promise.any": "^2.0.2",
"rate-limit-redis": "^1.7.0",
"sequelize": "^4.44.4",
"shortid": "^2.2.16",
"sockstat": "^1.0.1",
"systeminformation": "^5.7.6",
"ts-node": "^10.4.0",
"tus-node-server": "^0.3.2",
"umzug": "^2.3.0",
"uuid": "3.3.2",
"web3": "1.2.7"
},
"devDependencies": {
"mocha": "^5.2.0",
"nock": "^13.1.0",
"nodemon": "^1.19.4",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sequelize-cli": "^5.3.0",
"sinon": "^7.0.0",
"standard": "12.0.1",
"supertest": "^3.3.0",
"typescript": "^4.4.4"
},
"//": {
"dependenciesComments": {
"lodash": "Vuln in < 4.17.13, fixed by https://github.com/lodash/lodash/pull/4336"
},
"scriptsComments": {
"coverage": "Runs nyc on tests/ dir and outputs results in ./nyc_output. Can be used for vscode extensions.",
"report": "Generates static html files representing code coverage per test file and outputs them into /coverage."
}
},
"standard": {
"env": [
"mocha"
]
}
}