-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.75 KB
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
{
"name": "code-transform-sandbox",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"check-lint": "eslint . && prettier --check .",
"lint": "eslint --fix . && prettier --write .",
"serve": "sirv dist -sD",
"type": "tsc",
"type:watch": "npx tsc --watch",
"build": "node build.js",
"build:watch": "node build.js --watch",
"netlify": "node build.js ui transformer-esbuild transformer-terser transformer-sucrase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calebeby/code-transform-sandbox.git"
},
"keywords": [],
"author": "Caleb Eby",
"license": "MIT",
"bugs": {
"url": "https://github.com/calebeby/code-transform-sandbox/issues"
},
"homepage": "https://github.com/calebeby/code-transform-sandbox#readme",
"devDependencies": {
"@babel/core": "7.11.5",
"@babel/plugin-transform-react-jsx": "7.10.4",
"@babel/preset-env": "7.11.5",
"@babel/preset-typescript": "7.10.4",
"@calebeby/esbuild-wasm": "0.6.27",
"@rollup/plugin-babel": "5.2.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-url": "5.0.1",
"babel-plugin-const-enum": "1.0.1",
"babel-plugin-un-cjs": "2.2.0",
"comlink": "4.3.0",
"esbuild-wasm": "0.6.28",
"eslint": "7.8.1",
"eslint-plugin-caleb": "11.0.0",
"linaria": "2.0.0-rc.1",
"mri": "1.1.6",
"prettier": "2.1.1",
"qss": "2.0.3",
"rollup": "2.26.9",
"rollup-plugin-css-only": "2.1.0",
"rollup-plugin-terser": "7.0.1",
"sirv-cli": "1.0.6",
"sucrase": "3.15.0",
"terser": "5.2.1",
"typescript": "4.0.2"
},
"dependencies": {
"clsx": "1.1.1",
"flru": "1.0.2",
"mitt": "2.1.0",
"preact": "10.4.8"
}
}