forked from timsexperiments/es-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "es-exec",
"version": "0.0.1",
"description": "A project for running programs after esbuild.",
"scripts": {
"build": "rollup --c rollup.config.js",
"format": "prettier -uw **/*",
"format:check": "prettier -cu **/*"
},
"keywords": [
"esbuild",
"eslint",
"es-start",
"es-serve",
"es-exec",
"es-run",
"nodemon",
"typescript"
],
"author": "tim117",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tim117/es-start.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@types/eslint": "^8.4.6",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"esbuild": "^0.15.5",
"eslint": "^8.23.0",
"fastify": "^4.5.3",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"type": "module"
}