-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.65 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
{
"private": true,
"name": "@eduzz/houston-workspaces",
"version": "1.9.8",
"workspaces": [
"src/pages/*",
"src/dev",
"src"
],
"scripts": {
"commit": "node ./scripts/git-check-files.js && git-cz",
"prebuild": "yarn clean",
"build": "yarn tsc -p .",
"build:dev": "yarn swc ./src/pages -d ./src",
"build:docs": "(cd src && yarn build)",
"start": "node ./scripts/start.js",
"start:docs": "concurrently -r \"yarn start:watch\" \"(cd src && yarn start)\"",
"start:dev": "concurrently -r \"yarn start:watch\" \"(cd src/dev && yarn start)\"",
"start:watch": "yarn swc ./src/pages -d ./src -w",
"prepare": "sh ./scripts/prepare.sh",
"publish": "NPM_AUTH_TOKEN=$NPM_AUTH_TOKEN node ./scripts/publish-all.js",
"change-version": "node ./scripts/change-version.js",
"clean": "sh ./scripts/clean.sh",
"lint": "yarn eslint \"./**/*.ts\" \"./**/*.tsx\" \"./**/*.mdx\"",
"clean-install": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm -f yarn.lock && yarn install",
"pre-commit": "concurrently -r \"yarn lint\" \"yarn tsc -p . --noEmit\"",
"check-update-deps": "yarn ncu -u",
"update-deps": "yarn ultra -r --root check-update-deps"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@faker-js/faker": "^7.6.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.56",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@types/lodash-es": "^4",
"chokidar": "^3.5.3",
"commitizen": "^4.3.0",
"concurrently": "^8.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mdx": "^1.17.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"inquirer": "^8",
"npm-check-updates": "^16.10.9",
"ora": "^5",
"patch-package": "*",
"prettier": "^2.8.8",
"semver": "^7.5.0",
"typescript": "^5.0",
"ultra-runner": "^3.10.5"
},
"resolutions": {
"@types/react": "^18",
"**/@emotion/css": "^11",
"**/@emotion/react": "^11",
"**/@emotion/styled": "^11",
"gatsby-plugin-emotion": "^6",
"react": "^18",
"theme-ui": "^0.6",
"rxjs": "^7"
},
"dependencies": {}
}