-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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": "flex-sdk-js",
"version": "0.11.0",
"main": "dist/flex/index.js",
"scripts": {
"prepare": "npx tsc --project tsconfig.json",
"docs": "typedoc --options typedoc.js",
"build": "rimraf dist && tsc --project tsconfig.json",
"update-contracts": "node dist/contracts/update.js",
"test": "playwright test --project unit",
"integration-test": "playwright test --project integration",
"integration-test-prepare": "node dist/integration-test/config/prepare.js"
},
"test": "test",
"dependencies": {
"@eversdk/appkit": "^0.3.2",
"@eversdk/core": "^1.38.0",
"@eversdk/lib-node": "^1.38.0",
"decimal.js-light": "^2.5.1",
"typedoc-plugin-missing-exports": "^1.0.0"
},
"devDependencies": {
"@eversdk/lib-node": "^1.37.0",
"@playwright/test": "^1.28.1",
"@types/node": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"allure-playwright": "^2.0.0-beta.19",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typedoc": "^0.23.11",
"typescript": "^4.9.3"
}
}