-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "terminal-playground",
"version": "0.1.7",
"description": "Transpile Javascript and Typescript on the fly",
"main": "src/index.js",
"bin": "bin/terminal-playground.js",
"scripts": {
"build": "node internals/build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidnussio/terminal-playground.git"
},
"keywords": [
"javascript",
"typescript",
"esbuild",
"playground"
],
"author": "David Nussio",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidnussio/terminal-playground/issues"
},
"homepage": "https://github.com/davidnussio/terminal-playground#readme",
"dependencies": {
"chokidar": "^3.5.1",
"crocks": "0.12.4",
"effector": "^21.8.4",
"esbuild": "^0.8.51",
"execa": "^5.0.0",
"false": "0.0.4",
"ora": "^5.3.0",
"ramda": "^0.27.1",
"terminal-kit": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "2.22.1",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}