-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
{
"name": "reka",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "turbo run dev --filter=!./examples/* --parallel",
"build": "pnpm run clean && turbo run build --filter=!./examples/*",
"build:packages": "pnpm run clean && turbo run build --filter='./packages/*' --no-cache --force",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prettier": "prettier --write .",
"generate-api-docs": "node ./scripts/generate-api-docs.js",
"test": "vitest run",
"test:watch": "vitest watch",
"clean": "rimraf -g **/lib **/dist",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"publish": "run-s build:packages lint test changeset:publish",
"postinstall": "run-s build:packages"
},
"devDependencies": {
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-terser": "0.3.0",
"@rollup/plugin-typescript": "11.0.0",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"cross-env": "7.0.3",
"esbuild": "0.15.7",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"getdocs-ts": "0.1.5",
"nodemon": "2.0.19",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "4.4.0",
"rollup": "2.79.1",
"tslib": "2.4.0",
"turbo": "latest",
"typescript": "5.1.6",
"vitest": "0.29.2"
},
"engines": {
"node": ">=14.0.0"
},
"description": "Monorepo for Reka",
"main": ".eslintrc.js",
"keywords": [],
"author": "Prev Wong",
"license": "MIT",
"dependencies": {
"@babel/core": "7.20.5"
},
"repository": {
"type": "git",
"url": "https://github.com/prevwong/reka.js.git"
},
"packageManager": "[email protected]"
}