-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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": "rarity-analyser",
"version": "0.0.0",
"description": "Rarity analyser for NFT metadata collection",
"main": "app.js",
"author": "L.R.",
"license": "MIT",
"scripts": {
"start": "SET NODE_ENV=production && node ./bin/www",
"start-dev": "SET NODE_ENV=development && node-dev ./bin/www",
"postinstall": "node ./cmd/rarity_analyze.js && node ./cmd/rarity_analyze_normalized.js",
"rarity-analyze": "node ./cmd/rarity_analyze.js --mode=force && node ./cmd/rarity_analyze_normalized.js --mode=force",
"rarity-output-json": "node ./cmd/rarity_output_json.js"
},
"dependencies": {
"app-root-path": "^3.0.0",
"better-sqlite3": "^7.4.3",
"cookie-parser": "~1.4.4",
"cross-env": "^7.0.3",
"debug": "^4.3.2",
"ejs": "~2.6.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"minimist": "^1.2.5",
"morgan": "~1.9.1",
"sync-request": "^6.1.0",
"web3": "^1.6.0"
},
"engines": {
"node": ">= 12.x"
},
"devDependencies": {
"easy-livereload": "^1.4.3",
"node-dev": "^7.0.0"
}
}