forked from Joystream/pioneer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.81 KB
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
{
"name": "pioneer",
"private": true,
"version": "0.0.1",
"description": "Governance app for Joystream DAO",
"repository": "git@github.com:Joystream/pioneer.git",
"license": "GPL-3.0-only",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "wsrun --package ui -c lint:fix",
"build": "wsrun --fast-exit --stages -c --exclude @joystream/markdown-editor build",
"build:storybook": "wsrun --fast-exit --stages -c --exclude ui --exclude-missing build && wsrun --package ui -c build:storybook",
"storybook": "wsrun --exclude-missing -c storybook",
"test": "wsrun --fast-exit --package ui -c test",
"ci-test": "NODE_OPTIONS=--max_old_space_size=7000 wsrun --fast-exit --package ui -c test",
"start": "wsrun --package ui -c start",
"prepare": "husky install"
},
"dependencies": {
"eslint-plugin-import": "^2.23.4",
"wsrun": "^5.2.4"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^7.29.0",
"husky": ">=6",
"lint-staged": ">=10"
},
"resolutions": {
"@polkadot/api": "5.9.1",
"@polkadot/api-contract": "5.9.1",
"@polkadot/api-derive": "5.9.1",
"@polkadot/hw-ledger": "7.3.1",
"@polkadot/keyring": "7.3.1",
"@polkadot/networks": "7.3.1",
"@polkadot/rpc-core": "5.9.1",
"@polkadot/rpc-provider": "5.9.1",
"@polkadot/types": "5.9.1",
"@polkadot/types-known": "5.9.1",
"@polkadot/util": "7.3.1",
"@polkadot/util-crypto": "7.3.1",
"@polkadot/wasm-crypto": "4.2.1",
"@polkadot/wasm-crypto-asmjs": "4.2.1",
"@polkadot/wasm-crypto-wasm": "4.2.1",
"bn.js": "^4.11.9"
},
"engines": {
"node": ">=14.0.0",
"yarn": "^1.22.0"
},
"lint-staged": {
"packages/ui/src/**/*.{js,ts,tsx,html}": [
"eslint --fix",
"prettier --write"
]
}
}