-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.57 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
{
"name": "quantum-oracle-chainlink-adapter",
"version": "1.0.0",
"private": true,
"description": "Quantum Oracle helps create verified screenshots - NFTs proving that whatever their minter found on the net actually existed at that moment.",
"scripts": {
"start:dev": "nodemon --ignore data/ dist/",
"dev:ts": "tsc && node dist/index.js",
"start": "node dist/index.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --exit --timeout 40000 -r ts-node/register 'tests/**/*.ts'",
"testCov": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc --reporter=text mocha --exit -r ts-node/register 'tests/**/*.ts'",
"test:watch": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --exit --timeout 40000 --watch --watch-files tests/**/*.ts,src/**/*.ts -r ts-node/register 'tests/**/*.ts'"
},
"dependencies": {
"axios": "1.4.0",
"bull": "^4.10.4",
"canvas": "2.11.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"morgan": "^1.10.0",
"nft.storage": "7.1.0",
"puppeteer": "^20.4.0",
"socket.io": "^4.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.16",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "20.2.3",
"@types/svg-render": "^1.2.0",
"@types/uuid": "^9.0.1",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}