-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "@grabkit/workspace",
"version": "1.0.0",
"description": "The Grabkit helps you grab data and toss them to the server next chair.",
"repository": "https://github.com/mrlemoos/grabkit",
"author": "Leonardo Lemos <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jshint": "^2.13.5",
"lerna": "^4.0.0",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.8.3"
},
"scripts": {
"build": "npx lerna run build",
"test": "jest",
"prepare": "npx husky install",
"publish": "yarn run build && npx lerna publish",
"bootstrap": "npx lerna link && npx lerna bootstrap"
}
}