-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.17 KB
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
{
"name": "@dappykit/verify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:node --env mode=production",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "ts-node src/index.ts",
"start-deployer": "ts-node src/service/deployer.ts",
"start-deployer:dev": "RPC_URL=http://127.0.0.1:8545 DEPLOYER_ENV=dev ts-node src/service/deployer.ts",
"test": "jest --runInBand",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json",
"testnet:transfer": "ts-node src/service/transfer.ts",
"check-all": "npm run lint:check && npm run check:types && npm run test"
},
"author": "DappyKit",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.0",
"@types/supertest": "^6.0.2",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"babel-jest": "^29.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"knex": "^3.1.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@dappykit/sdk": "^1.5.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@neynar/nodejs-sdk": "^1.13.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.10.0",
"express": "^4.18.2",
"google-auth-library": "^9.6.3",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.12.0",
"tmp": "^0.2.1",
"uuid": "^9.0.1"
}
}