-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "table-nft-renderer",
"version": "0.0.0",
"description": "Renders the Table NFT as an SVG or an interactive table editor",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./api/index.js",
"build": "npx mix",
"build:watch": "npx mix watch",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"**/*.{ts,json,md}\" --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "npm run build && node --experimental-fetch ./node_modules/mocha/bin/mocha.js --exit test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tablelandnetwork/table-nft-renderer.git"
},
"keywords": [
"tableland",
"evm",
"sql"
],
"license": "MIT AND Apache-2.0",
"bugs": {
"url": "https://github.com/tablelandnetwork/table-nft-renderer/issues"
},
"homepage": "https://github.com/tablelandnetwork/table-nft-renderer#readme",
"dependencies": {
"@rainbow-me/rainbowkit": "^2.0.6",
"@reduxjs/toolkit": "^1.9.0",
"@tableland/sdk": "^7.2.1",
"@tableland/sqlparser": "^1.3.0",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.62.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.1",
"ethers": "^6.12.0",
"express": "^4.18.2",
"laravel-mix": "^6.0.49",
"mocha": "^10.0.0",
"node-fetch": "^3.3.2",
"prettier": "^2.7.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-redux": "^8.0.5",
"react-router": "^6.21.3",
"react-router-dom": "^6.19.0",
"react-simple-code-editor": "^0.13.1",
"viem": "^2.9.28",
"wagmi": "^2.6.0"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@tableland/local": "^3.0.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^14.1.0",
"sinon": "^17.0.1",
"ts-loader": "^9.4.1",
"typescript": "^5.3.3"
}
}