-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
96 lines (96 loc) · 2.73 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
{
"private": true,
"description": "a progressive micro frontend library",
"name": "ralliejs",
"workspaces": [
"packages/*",
"playground"
],
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"clean": "lerna clean && rm -rf node_modules",
"build": "lerna run build --stream",
"test": "pnpm build && jest --coverage",
"release": "pnpm build && lerna publish --conventional-commits --create-release github",
"dev": "lerna run dev --stream",
"preview": "lerna run preview --stream",
"commit": "git cz",
"lint": "eslint --fix && prettier --write ./packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralliejs/rallie.git"
},
"author": "Philip Lau",
"license": "MIT",
"bugs": {
"url": "https://github.com/ralliejs/rallie/issues"
},
"homepage": "https://github.com/ralliejs/rallie#readme",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@testing-library/react": "^14.0.0",
"@testing-library/vue": "^7.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/vue3-jest": "^29.2.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^7.1.5",
"lint-staged": "^13.2.3",
"nock": "^13.3.2",
"node-fetch": "2.6.12",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-externals": "^0.6.2",
"vue": "^3.3.4",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"tslib": "^2.6.1"
}
}