-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "nft-character-core",
"version": "1.0.0",
"description": "NFT Character core backend service",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "NODE_ENV=dev node index.js",
"test": "eslint src/ test/ && NODE_ENV=test npm run drop && NODE_ENV=test nyc --reporter=lcov --reporter=text _mocha --exit --timeout 15000",
"test:only": "NODE_ENV=test npm run drop && NODE_ENV=test nyc --reporter=lcov --reporter=text _mocha --exit --timeout 15000",
"drop": "",
"infrasetup": "docker-compose -f docker-compose-local.yml up -d --no-deps mongo",
"generate": "projectGenerator backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DenisPopov15/nft-character-core.git"
},
"author": "Denys Popov",
"license": "ISC",
"bugs": {
"url": "https://github.com/DenisPopov15/nft-character-core/issues"
},
"homepage": "https://github.com/DenisPopov15/nft-character-core#readme",
"dependencies": {
"@pinecone-database/pinecone": "^0.0.9",
"common-backend-js": "0.1.11",
"dotenv": "^4.0.0",
"ethers": "^5.5.4",
"langchain": "^0.0.11",
"lodash.clonedeep": "^4.5.0",
"lodash.keyby": "^4.6.0",
"lodash.uppercase": "^4.3.0",
"mongoose": "^6.4.3",
"node-fetch": "2.6.7",
"non-fungible-token-abi": "^1.0.1",
"openai": "^3.1.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"factory-girl": "^5.0.4",
"faker": "^5.5.3",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"supertest": "^6.2.2"
}
}