-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 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
{
"name": "sismo-connect-sdk",
"version": "1.0.8",
"description": "Sismo Connect packages",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "yarn && yarn build:sismo-connect-client && yarn build:sismo-connect-server && yarn build:sismo-connect-react",
"build:sismo-connect-client": "cd packages/sismo-connect-client && yarn && yarn build",
"build:sismo-connect-server": "cd packages/sismo-connect-server && yarn && yarn build",
"build:sismo-connect-react": "cd packages/sismo-connect-react && yarn && yarn build",
"prepare": "yarn prepare:client && yarn prepare:server",
"prepare:client": "cd ./packages/sismo-connect-client && yarn",
"prepare:server": "cd ./packages/sismo-connect-server && yarn",
"eslint": "eslint --max-warnings=0",
"prettier": "prettier --write 'packages/**/*'",
"prettier:check": "prettier --check 'packages/**/*'",
"test": "yarn test:client && yarn test:server",
"test:client": "cd ./packages/sismo-connect-client && yarn test",
"test:server": "cd ./packages/sismo-connect-server && yarn test"
},
"devDependencies": {
"eslint": "^8.34.0",
"prettier": "^2.8.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "restricted"
},
"files": [
"lib",
"src"
],
"repository": "[email protected]:sismo-core/sismo-connect-packages.git",
"author": "[email protected]",
"license": "MIT",
"dependencies": {}
}