-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "catoff-reclaim-integration-proposal",
"version": "0.0.1",
"description": "CRIP is an open source project to receieve community proposals for catoff challenges which are based on reclaim integration",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"format": "prettier --write '**/*.js'"
},
"author": "Catoff Gaming",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/CatoffGaming/catoff-reclaim-integration-proposal.git"
},
"bugs": {
"url": "https://github.com/CatoffGaming/catoff-reclaim-integration-proposal/issues"
},
"homepage": "https://github.com/CatoffGaming/catoff-reclaim-integration-proposal#readme",
"dependencies": {
"@reclaimprotocol/js-sdk": "^1.3.6",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2"
},
"devDependencies": {
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
}
}