-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
86 lines (86 loc) · 3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"description": "UI for consuming Joystream - a user governed video platform",
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Joystream/atlas.git"
},
"bugs": {
"url": "https://github.com/Joystream/atlas/issues"
},
"scripts": {
"atlas:dev": "yarn workspace @joystream/atlas dev",
"atlas:build": "yarn workspace @joystream/atlas build",
"atlas:lint": "yarn workspace @joystream/atlas lint",
"atlas:storybook": "yarn workspace @joystream/atlas storybook",
"atlas:build-storybook": "yarn workspace @joystream/atlas build-storybook",
"atlas:test": "yarn workspace @joystream/atlas test",
"atlas:test:dev": "yarn workspace @joystream/atlas test:dev",
"atlas:tokens": "yarn workspace @joystream/atlas tokens",
"atlas:tokens:fetch": "yarn workspace @joystream/atlas tokens:fetch",
"atlas:tokens:build": "yarn workspace @joystream/atlas tokens:build",
"atlas:graphql": "yarn workspace @joystream/atlas graphql",
"atlas:svgs": "yarn workspace @joystream/atlas svgs",
"atlas:svgs:illustrations": "yarn workspace @joystream/atlas svgs:illustrations",
"atlas:svgs:icons": "yarn workspace @joystream/atlas svgs:icons",
"atlas:svgs:logos": "yarn workspace @joystream/atlas svgs:logos",
"meta-server:build": "yarn workspace @joystream/atlas-meta-server build",
"avatar-service:build": "yarn workspace @joystream/atlas-avatar-service build",
"docker:atlas": "ci/build-docker-atlas.sh",
"docker:meta-server": "ci/build-docker-meta-server.sh",
"docker:avatar-service": "ci/build-docker-avatar-service.sh",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"atlas:madge:circular": "yarn workspace @joystream/atlas madge:circular"
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint --cache --fix",
"prettier --write",
"stylelint --fix"
]
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@joystream/prettier-config": "^1.0.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.16.20",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "~2.8.1",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"typescript": "5.1.6"
},
"resolutions": {
"@polkadot/api": "10.7.1",
"@polkadot/keyring": "12.6.2",
"@polkadot/types": "10.7.1",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"@polkadot/networks": "12.6.2",
"@polkadot/x-fetch": "9.5.1",
"@polkadot/x-global": "9.5.1",
"@polkadot/x-ws": "9.5.1",
"bn.js": "5.2.1",
"blake3": "patch:blake3@npm:2.1.7#.yarn/patches/blake3-npm-2.1.7-7bf40c44b4"
},
"engines": {
"node": "^18"
},
"packageManager": "[email protected]"
}