-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.85 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
{
"private": true,
"name": "js-rocks",
"description": "a javascript library rebuild series",
"scripts": {
"changeset": "changeset",
"bumpVersion": "changeset version",
"release": "changeset publish",
"commit": "npx git-cz",
"format": "pnpm prettier-write && pnpm eslint-fix",
"eslint-fix": "turbo run eslint-fix",
"prettier-write": "turbo run prettier-write",
"typecheck": "turbo run typecheck",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"build:react": "pnpm --filter @js-rocks/react-tiny build",
"build:react:watch": "pnpm --filter @js-rocks/react-tiny build:watch",
"build:promise": "pnpm --filter @js-rocks/promise-tiny build",
"build:lodash": "pnpm --filter @js-rocks/lodash-tiny build",
"build:babel": "pnpm --filter @js-rocks/babel-tiny build",
"build:vue": "pnpm --filter @js-rocks/vue-tiny build",
"build:vue:watch": "pnpm --filter @js-rocks/vue-tiny build:watch",
"test:vue": "pnpm --filter @js-rocks/vue-tiny vitest",
"test": "turbo run test",
"build": "turbo run build",
"removeCache": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' +"
},
"lint-staged": {
"*.{ts,js}": [
"prettier-write",
"eslint-fix"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.4.3",
"babel-types": "^6.26.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^12.5.0",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"rollup": "^2.79.1",
"ts-jest": "^29.0.5",
"turbo": "^1.8.1",
"typescript": "^4.9.5",
"vitest": "^0.29.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "MIT",
"repository": "https://github.com/chenxiaoyao6228/js-rocks.git",
"author": "chenxiaoyao <chenxiaoyao6228@163.com>",
"version": "independent",
"link-workspace-packages": false,
"dependencies": {
"@rollup/plugin-replace": "^5.0.2",
"rimraf": "^4.4.0"
}
}