-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
63 lines (63 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pioneer",
"private": true,
"description": "Governance app for Joystream DAO",
"repository": "git@github.com:Joystream/pioneer.git",
"license": "GPL-3.0-only",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "wsrun -x @joystream/markdown-editor -c lint",
"lint:fix": "wsrun -x @joystream/markdown-editor -c lint:fix",
"build": "wsrun --fast-exit --package @joystream/pioneer -c build",
"build:storybook": "wsrun --fast-exit --stages -p @joystream/markdown-editor -c build && wsrun -p @joystream/pioneer -c build:storybook",
"storybook": "wsrun --exclude-missing -c storybook",
"test": "wsrun --fast-exit --exclude-missing -c test",
"test-storybook": "wsrun --package @joystream/pioneer -c test-storybook",
"start": "wsrun --package @joystream/pioneer -c start",
"prepare": "husky install"
},
"dependencies": {
"wsrun": "^5.2.4"
},
"devDependencies": {
"husky": ">=6",
"lint-staged": ">=10"
},
"resolutions": {
"@babel/core": "~7.21.0",
"@babel/preset-env": "~7.21.0",
"@babel/generator": "~7.21.0",
"@babel/parser": "~7.21.0",
"@babel/traverse": "~7.21.0",
"@babel/types": "~7.21.0",
"@joystream/types": "4.6.0",
"@polkadot/api": "10.7.1",
"@polkadot/api-contract": "10.7.1",
"@polkadot/api-derive": "10.7.1",
"@polkadot/hw-ledger": "12.2.1",
"@polkadot/keyring": "12.2.1",
"@polkadot/networks": "12.2.1",
"@polkadot/rpc-core": "10.7.1",
"@polkadot/rpc-provider": "10.7.1",
"@polkadot/types": "10.7.1",
"@polkadot/types-known": "10.7.1",
"@polkadot/util": "12.2.1",
"@polkadot/util-crypto": "12.2.1",
"bn.js": "^4.11.9"
},
"engines": {
"node": ">=18",
"yarn": "^1.22.0"
},
"lint-staged": {
"packages/{ui,server}/src/**/*.{js,ts,tsx,html}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "yarn@3.3.0"
}