-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "rdamn-playground",
"private": true,
"main": "build/index.js",
"scripts": {
"lint": "eslint .",
"checkTypes": "tsc --noEmit",
"build": "esbuild-node-tsc",
"start": "node ./build",
"dev": "nodemon | pino-pretty --colorize",
"dev:buildDocker": "docker build -t rdamn-playground . && docker rm -f $(docker ps -aq)",
"dev:startDocker": "docker run -p 1234:1234 -p 1337:1337 -p 1338:1338 --env-file .env rdamn-playground"
},
"dependencies": {
"ajv": "^8.10.0",
"chokidar": "^3.5.3",
"configparser": "^0.3.9",
"directory-tree": "^3.2.2",
"env-schema": "^3.5.2",
"esbuild-node-tsc": "^1.8.5",
"fastify": "^3.27.4",
"fastify-cors": "^6.0.3",
"fastify-websocket": "^4.2.0",
"node-fetch": "^2.6.7",
"node-pty": "^0.10.1"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"esbuild": "^0.14.27",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"import-sort-style-module": "^6.0.0",
"nodemon": "^2.0.15",
"pino-pretty": "^7.5.3",
"prettier": "^2.5.1",
"prettier-plugin-import-sort": "^0.0.7",
"typescript": "^4.6.2"
},
"importSort": {
".js, .ts": {
"style": "module",
"parser": "typescript"
}
}
}