-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "react-view",
"version": "3.0.1",
"description": "",
"keywords": [
"react",
"uber",
"playground",
"view",
"documentation"
],
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"packageManager": "pnpm@8.7.1",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18.0.0"
},
"author": "Vojtech Miksu <vojtech@uber.com>",
"repository": "uber/react-view",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "tsc --p tsconfig.lib.json && tsc --p tsconfig.es.json",
"lint": "eslint '{examples,src}/**/*.{js,ts,tsx}' vite.config.js .ladle",
"prebuild": "rimraf dist",
"test": "vitest src --run",
"test:dev": "vitest src",
"test:e2e": " pnpm test:e2e:dev && pnpm test:e2e:prod",
"test:e2e:dev": "export TYPE=dev && pnpm exec playwright test",
"test:e2e:prod": "export TYPE=prod && pnpm exec playwright test",
"typecheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@babel/code-frame": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/generator": "^7.23.4",
"@babel/parser": "^7.23.4",
"@babel/preset-react": "^7.23.3",
"@babel/template": "^7.22.15",
"@babel/traverse": "^7.23.4",
"@babel/types": "^7.23.4",
"@miksu/prettier": "^1.18.6",
"copy-to-clipboard": "^3.3.3",
"lodash": "^4.17.21",
"prism-react-renderer": "^2.3.0",
"react-simple-code-editor": "^0.13.1",
"react-tiny-popover": "^8.0.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@ladle/react": "^4.0.0",
"@playwright/test": "^1.40.0",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.7",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"node-libs-browser": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
}
}