generated from khancode/create-hooks-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.16 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
{
"name": "xrpl-crowdfund",
"version": "1.0.0",
"description": "A decentralized crowdfunding platform on the XRP Ledger (XRPL) using Hooks",
"main": "src/src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/khancode/xrpl-crowdfund.git"
},
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --config=jest.config.unit.js --coverage",
"test:setup": "npx ts-node ./client/test-integration/setupTestData",
"test:integration": "jest --config=jest.config.integration.js --runInBand",
"test:database": "jest --config=jest.config.database.js",
"lint": "eslint ./client/**/* --ext .ts",
"format": "npx prettier --write ./client",
"setup": "make setup",
"build:hooks": "make -B build-hooks",
"set-hooks": "make set-hooks",
"build-set-hooks": "make build-set-hooks",
"clean": "make clean",
"xrpl:server-state": "npx ts-node serverState",
"app:setup-hook-account": "npx ts-node ./client/app/setupHookAccount",
"app:init": "npm run app:setup-hook-account && npm run build-set-hooks",
"app:test-data": "npx ts-node ./client/setup-data/index",
"app:setup": "npm run app:init && npm run app:test-data",
"start": "npx ts-node ./src/server/index"
},
"author": {
"name": "Omar Khan",
"url": "https://github.com/khancode"
},
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.0.3",
"ripple-address-codec": "^4.2.5",
"ripple-binary-codec": "^1.4.3",
"xrpl": "^2.7.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}