-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·88 lines (88 loc) · 3.26 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wallet",
"version": "1.0.0",
"description": "> **This project is being built by the interns at Coil and is NOT ready to use. We'll make a release as soon as it is.**",
"main": "./build/app.js",
"scripts": {
"build": "tsc",
"clean": "rm -Rf .nyc_output && rm -Rf coverage && rm -Rf build ",
"codecov": "codecov",
"docker-run": "docker-compose build && docker-compose up",
"docs": "typedoc --out docs/ src --module commonjs --readme README.md --name wallet",
"lint": "tslint --project .",
"loadtest": "concurrently 'node scripts/initTestDB.js' 'npm run watch-node' 'sleep 5 && artillery run -o artillery/report.json artillery/walletLoadTest.yml && artillery report artillery/report.json'",
"prepublishOnly": "npm run lint && npm test && npm run doc",
"pretest": "knex migrate:rollback && knex migrate:latest && knex seed:run && tsc --build",
"preversion": "npm run lint && npm test",
"redb": "knex migrate:rollback && knex migrate:latest && knex seed:run",
"migrate:latest": "knex migrate:rollback && knex migrate:latest && knex seed:run",
"start": "npm run build && node build/app.js",
"start-docker": "knex migrate:rollback && knex migrate:latest && knex seed:run && npm run watch-node",
"test": "mocha -S --require ts-node/register --ui mocha-typescript --require source-map-support/register test/index.test.ts",
"watch-node": "nodemon app.js --ignore ./test/",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/mysql": "^2.15.6",
"@types/nock": "^9.3.1",
"@types/node": "^10.14.6",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mkdirp": "^0.5.1",
"mysql": "^2.17.1",
"nock": "^10.0.6",
"nodemon": "^1.19.0",
"sqlite3": "^4.0.9",
"validator": "^10.11.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.7",
"@types/supertest": "^2.0.7",
"artillery": "^1.6.0-28",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.4.0",
"concurrently": "^4.1.0",
"dotenv": "^7.0.0",
"expect": "^24.8.0",
"knex": "^0.16.5",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"sinon-express-mock": "^2.2.0",
"source-map-support": "^0.5.12",
"supertest": "^3.4.2",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/wallet.git"
},
"bugs": {
"url": "https://github.com/interledgerjs/wallet/issues"
},
"homepage": "https://github.com/interledgerjs/wallet#readme"
}