-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.08 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
{
"private": true,
"name": "montage",
"version": "1.0.0",
"scripts": {
"start": "nx run website:start",
"serve": "nx run website:serve",
"build:pnpm": "pnpm --filter packages/** run build",
"build": "nx run-many --target=build --all",
"analyze": "nx graph",
"docs:build": "nx run website:build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"webstorm-integration": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json",
"prepublishOnly": "npm run build",
"publish": "pnpm changeset && pnpm changeset version && pnpm changeset publish && changeset tag && pnpm run push",
"push": "git add . && git commit -m 'chore(release): publish' && git push --follow-tags"
},
"files": [
"dist"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@montagejs/changelog-montage": "workspace:^1.2.3",
"@montagejs/react-waline-client": "workspace:^0.1.8",
"@montagejs/rollup-plugin-generate-style": "0.0.8",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "^2.76.0",
"rollup-plugin-swc": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.1",
"@changesets/get-github-info": "^0.5.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/pluginutils": "^4.2.1",
"@swc/core": "^1.2.211",
"@swc/helpers": "^0.4.3",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "12.0.0",
"@types/node": "^18.6.3",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitest/ui": "^0.22.0",
"antd": "^4.21.5",
"autoprefixer": "^10.4.7",
"babel-plugin-import": "^1.13.5",
"esbuild": "^0.14.48",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"fs-extra": "^10.1.0",
"gh-pages": "4.0.0",
"jsdom": "^21.1.0",
"less": "^4.1.3",
"lint-staged": "13.0.3",
"nx": "14.4.2",
"postcss-nested": "^5.0.6",
"postcss-simple-vars": "^6.0.3",
"prettier": "^2.7.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-progress": "^1.1.2",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-prettier": "^2.0.0",
"unplugin-auto-import": "^0.11.1",
"vite": "^3.0.8",
"vitest": "^0.22.0",
"yorkie": "^2.0.0"
},
"volta": {
"node": "16.17.0"
}
}