-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "@daocasino/platform-back-js-lib",
"version": "1.8.2",
"description": "Use this to connect your frontend to the platform backend",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DaoCasino/game-js-sdk.git"
},
"bugs": {
"url": "https://github.com/DaoCasino/game-js-sdk/issues"
},
"homepage": "https://github.com/DaoCasino/game-js-sdk/#readme",
"author": "scaptaincap <govyazin@mixbytes.io>",
"private": false,
"scripts": {
"prepare": "npm run build",
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepush": "npm run lint",
"push": "npm run test",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register src/tests/**/*.*.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@daocasino/platform-messaging": "0.1.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.4",
"fetch-mock": "^9.10.7",
"husky": "^4.2.5",
"isomorphic-fetch": "^3.0.0",
"mocha": "^8.1.3",
"prettier": "^1.19.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-push": "npm run push"
}
}
}