-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 941 Bytes
/
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
{
"name": "flex-wallet-couch",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "COUCH_CONNECTION_URL=http://admin:password@localhost:5984/ PORT=5001 ts-node ./src/index.ts",
"start": "tsc && node ./dist/index.js",
"test": "mocha -r ts-node/register src/tests/*.spec.ts"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@types/chai": "^4.2.11",
"@types/nano": "^7.0.0",
"base64url": "^3.0.1",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"crypto-ld": "^3.7.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"nano": "^8.2.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.4",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}