forked from Mintbase/mintbase-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.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
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
{
"name": "mintbase",
"version": "0.8.0",
"description": "Mint, sell, transfer NFTs on the NEAR blockchain",
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run build:js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix",
"doc": "typedoc --out docs src && touch docs/.nojekyll",
"dev": "nodemon --exec npm run build",
"start:docs": "http-server ./docs",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"nodemonConfig": {
"watch": [
"src/*"
],
"ext": "ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mintbase/mintbase-js.git"
},
"files": [
"lib",
"dist"
],
"keywords": [
"NFT",
"Blockchain",
"Mintbase"
],
"author": "@nategeier",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mintbase/mintbase-js/issues"
},
"homepage": "https://github.com/Mintbase/mintbase-js#readme",
"dependencies": {
"@types/retry": "^0.12.1",
"bn.js": "^5.2.0",
"browser-or-node": "^1.3.0",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"firebase": "^8.3.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"isomorphic-unfetch": "^3.1.0",
"near-api-js": "^0.45.1",
"regenerator-runtime": "^0.13.7",
"retry": "^0.13.1",
"tweetnacl": "^1.0.3",
"urlcat": "^2.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/bn.js": "^5.1.0",
"@types/browser-or-node": "^1.3.0",
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.8",
"@types/regenerator-runtime": "^0.13.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"browserify": "^17.0.0",
"eslint": "^7.22.0",
"esmify": "^2.1.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"tinyify": "^3.0.0",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"typedoc": "^0.21.9",
"typescript": "^4.2.4",
"uglifyify": "^5.0.2"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom"
}
}