This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
116 lines (116 loc) · 4.21 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@mashcard/monorepo",
"version": "0.0.0",
"author": "Pleisto Inc.",
"description": "MashCard Monorepo Root",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"tools/*",
"plugins/*"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{json,yml,yaml,md,mdx,graphql,gql,graphql,css,js,jsx,ts,tsx}": [
"dev-support prettier --write"
],
"*.code-workspace": [
"dev-support prettier --parser json --write"
],
"packages/design-icons/assets/**/*.svg": [
"yarn design-icons generate"
],
"apps/server-monolith/*.rs": [
"cargo fmt --manifest-path=apps/server-monolith/Cargo.toml && :"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"postinstall": "(dev-support is-ci || husky install) && dev-support pdftron-post-setup",
"rust:build": "SYSINFO=$(uname -a) turbo run rust:build",
"rust:build:dev": "turbo run rust:build:dev",
"lint": "turbo run lint:eslint lint:rubocop lint:type",
"lint:eslint": "turbo run lint:eslint",
"lint:rubocop": "turbo run lint:rubocop",
"lint:type": "turbo run lint:type",
"lint:fix": "turbo run lint:fix",
"test": "SYSINFO=$(uname -a) turbo run test:jest test:rspec",
"test:jest": "NODE_ENV=test turbo run test:jest",
"test:update-snap": "NODE_ENV=test yarn workspaces foreach --since -p -j unlimited run test:jest -u",
"test:rspec": "SYSINFO=$(uname -a) turbo run test:rspec",
"test:playwright": "yarn e2e-testing start",
"tsdoc": "turbo run tsdoc",
"commit": "git add . && cz",
"cleanup": "rimraf node_modules/.cache apps/server-monolith/public '{packages,tools,apps}/*/{dist,coverage,.turbo,.nyc_output,.eslintcache,.next}' 'tools/e2e-testing/{allure-report,allure-results,test-results,storageState-*.json}'",
"schema": "yarn workspace @mashcard/schema",
"design-system": "yarn workspace @mashcard/design-system",
"design-icons": "yarn workspace @mashcard/design-icons",
"legacy-editor": "yarn workspace @mashcard/legacy-editor",
"editor": "yarn workspace @mashcard/editor",
"formula": "yarn workspace @mashcard/formula",
"uploader": "yarn workspace @mashcard/uploader",
"web": "yarn workspace @mashcard/client-web",
"e2e-testing": "yarn workspace @mashcard/e2e-testing",
"active-support": "yarn workspace @mashcard/active-support",
"server": "yarn workspace @mashcard/server-monolith",
"github-auth": "yarn workspace @mashcard/github-auth",
"google-auth": "yarn workspace @mashcard/google-auth",
"graphql": "yarn server dump:graphql && yarn web generate:graphql",
"cloud": "yarn workspace @pleisto/cloud",
"i": "yarn install && yarn server i"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@mashcard/dev-support": "workspace:^",
"@swc/cli": "^0.1.57",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.6",
"@types/jest-axe": "^3.5.4",
"@types/node": "^18.7.1",
"@types/rails__actioncable": "^6.1.6",
"@types/rails__activestorage": "^7.0.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-axe": "^6.0.0",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"rimraf": "^3.0.2",
"turbo": "^1.4.3",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]",
"resolutions": {
"@rails/actioncable": "patch:@rails/actioncable@npm:7.0.3#.yarn/patches/@rails-actioncable-npm-7.0.3-9e882d37e5.patch",
"cpy": "npm:@pleisto/cpy@>=8.1.2-patch.1",
"prosemirror-view": "patch:prosemirror-view@npm:1.27.0#.yarn/patches/prosemirror-view-npm-1.27.0-fee90688e2.patch"
},
"dependencies": {
"@swc/core": "^1.2.224",
"@swc/helpers": "^0.4.3",
"lodash-es": "^4.17.21",
"ts-node": "^10.9.1"
},
"volta": {
"node": "18.6.0",
"yarn": "1.22.18"
}
}