-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "sol-glyph",
"version": "1.0.0",
"description": "Stop templating your NFT collections. Generate them from a trained machine learning smart contract.",
"main": "src/client/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "DEBUG=express:* NODE_ENV=development ts-node src/webserver/index.ts",
"build": "tsc --build",
"start": "node src/webserver/index.js",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timeemit/sol-glyph.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/timeemit/sol-glyph/issues"
},
"homepage": "https://github.com/timeemit/sol-glyph#readme",
"dependencies": {
"@solana/web3.js": "^1.36.0",
"express": "^4.17.3",
"mz": "^2.7.0",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mz": "^2.7.4",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}