-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
38 lines (38 loc) · 1.24 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
{
"name": "react-live-workspace",
"private": "true",
"main": "dist/react-live.cjs.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/react-live.es.js",
"module": "dist/react-live.es.js",
"license": "MIT",
"scripts": {
"start:docs": "pnpm run --filter website start",
"dev:demo": "pnpm run --filter demo dev",
"build": "pnpm run -r build",
"build:lib": "pnpm run --filter react-live build",
"lint": "pnpm run --parallel lint",
"lint:fix": "pnpm run --parallel lint --fix",
"test": "pnpm run --filter react-live test",
"changeset": "changeset",
"version": "pnpm changeset version && pnpm install --no-frozen-lockfile"
},
"dependencies": {
"prism-react-renderer": "^2.0.6"
},
"packageManager": "pnpm@7.33.7",
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.7.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
}
}