-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.9 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
{
"name": "regen-web",
"private": true,
"description": "Regen Website",
"homepage": "https://github.com/regen-network/regen-web",
"bugs": {
"url": "https://github.com/regen-network/regen-web/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/regen-network/regen-web"
},
"workspaces": [
"web-marketplace",
"web-components",
"web-storybook",
"web-www"
],
"scripts": {
"build": "bun run --cwd web-marketplace build",
"build-www": "bun run --cwd web-www build",
"build-components": "bun run --cwd web-components build",
"build-storybook": "bun run --cwd web-storybook build-storybook",
"clean": "find . -iname 'node_modules' -maxdepth 2 | xargs rm -rf",
"format": "bun run --cwd web-components format & bun run --cwd web-marketplace format & bun run --cwd web-www format",
"lint": "bun run --cwd web-components lint & bun run --cwd web-marketplace lint & bun run --cwd web-www lint",
"format-and-fix": "bun run --cwd web-components format-and-fix & bun run --cwd web-marketplace format-and-fix & bun run --cwd web-www format-and-fix",
"storybook": "bun run --cwd web-storybook storybook",
"test-marketplace": "bun run --cwd web-marketplace test",
"test-components": "bun run --cwd web-components test",
"start": "bun run --cwd web-marketplace start",
"watch": "bun run --cwd web-components watch",
"test-update-snapshot": "bun run --cwd web-marketplace test-update-snapshot",
"bump": "lerna version --no-push --conventional-commits",
"bump-and-push": "lerna version --conventional-commits",
"postinstall": "patch-package",
"build-design-tokens": "bun run --cwd design build-tokens"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-graphql-files-modules": "1.18.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@types/css-mediaquery": "^0.1.1",
"@types/node": "13.1.1",
"babel-loader": "8.1.0",
"css-mediaquery": "0.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.1.0",
"lerna": "^6.4.1",
"patch-package": "^8.0.0",
"prettier": "2.4.1",
"shx": "^0.3.2",
"storybook": "^7.3.2",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.18.2"
},
"resolutions": {
"eslint": "^8.42.0",
"formik-mui": "^5.0.0-alpha.0",
"formik": "2.2.9",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"babel-eslint": "^10.1.0",
"**/@typescript-eslint/eslint-plugin": "^6.7.3",
"**/@typescript-eslint/parser": "^6.7.3",
"webpack": "4.44.2",
"@emotion/react": "11.10.6",
"tss-react": "^4.8.2"
},
"husky": {
"hooks": {}
},
"version": "1.1.0"
}