-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "@masa-finance/masa-express",
"version": "2.1.0",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"author": "Sebastian Gerske <13647606+H34D@users.noreply.github.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"test": "ts-mocha test/**/*.test.ts",
"test:watch": "ts-mocha --extension ts,js test/**/*.test.ts --watch",
"start": "yarn build:watch",
"build": "tsc",
"build:watch": "tsc -w",
"prettier": "prettier ./src --write",
"lint": "eslint ./src",
"doc": "typedoc"
},
"dependencies": {
"@masa-finance/masa-sdk": "~3.41.2",
"express": "^4.19.2",
"express-session": "^1.18.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/express-session": "^1.18.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "^5.5.4"
}
}