-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"private": true,
"name": "typescript-playground-plugin-react",
"description": "Easily create TypeScript Playground Plugins with React.",
"version": "0.0.2",
"repository": "[email protected]:gojutin/typescript-playground-plugin-react.git",
"author": "Justin Wilkerson <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run watch",
"watch": "cross-env NODE_ENV=development rollup -c -w",
"lint": "eslint . --ext .ts,.tsx",
"build": "cross-env NODE_ENV=production rollup -c"
},
"keywords": [
"playground-plugin"
],
"dependencies": {
"goober": "^2.0.28",
"react": "^17.0.1",
"react-resize-aware": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"babel-eslint": "10.x",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "7.x",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "5.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.x",
"get-chrome-tabs": "^1.0.0",
"monaco-editor": "^0.22.1",
"open-cli": "^6.0.1",
"rollup": "^2.38.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-ignore": "^1.0.9",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.3"
}
}