-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.54 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
{
"name": "react-scrollytelling",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "lerna run dev --stream",
"start": "yarn run dev",
"docs": "lerna run storybook",
"build": "lerna run build",
"build:website": "lerna run build:website",
"build:apps": "lerna run build:apps",
"build:dist": "lerna run build:dist",
"prod": "lerna run prod",
"lint": "run-p lint:es",
"lint:es": "eslint --ignore-path .gitignore \"./**/*.{ts,tsx}\"",
"lint:fix": "yarn lint:es --fix",
"clean": "lerna run clean",
"postinstall": "husky install",
"pre-commit": "lint:fix",
"test": "lerna run test",
"test:watch": "lerna run test:watch",
"versionup": "lerna version --conventional-commits --no-git-tag-version",
"versionup:patch": "lerna version patch --conventional-commits --no-git-tag-version",
"versionup:minor": "lerna version minor --conventional-commits --no-git-tag-version",
"versionup:major": "lerna version major --conventional-commits --no-git-tag-version",
"release": "lerna publish from-package --yes --no-verify-access",
"release:beta": "lerna publish --no-push --dist-tag=prerelease",
"release:canary": "lerna publish -y --canary --preid ci --npm-tag=ci --force-publish",
"release:interactive": "lerna publish"
},
"eslintConfig": {
"root": true,
"extends": "./configs/.eslintrc.js"
},
"volta": {
"node": "18.17.0",
"yarn": "3.2.4"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@hsunpei/commitlint-config": "^0.1.0",
"@hsunpei/eslint-config": "^0.0.8",
"@hsunpei/prettier-config": "^1.0.1",
"@hsunpei/stylelint-config": "^0.1.6",
"@hsunpei/typescript-config": "^1.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@types/mdx": "^2.0.10",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"lerna": "^6.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup-plugin-analyzer": "^4.0.0",
"stylelint": "^15.10.1",
"typescript": "^5.1.6",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
}
}