-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "babel",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/tdjsnelling/babel",
"author": "Tom Snelling <tomsnelling8@gmail.com>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"build": "tsc",
"dev": "concurrently --passthrough-arguments --kill-others \"yarn build --watch\" \"nodemon --enable-source-maps dist/src/index.js {1}\"",
"start": "node dist/src/index.js",
"lint": "eslint src"
},
"devDependencies": {
"@types/koa": "^2.14.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-static": "^4.0.4",
"@types/koa__router": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@koa/router": "^10.1.1",
"dotenv": "^16.0.3",
"gmp-wasm": "^1.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.4.0",
"koa-pug": "^5.0.0",
"koa-static": "^5.0.0",
"level": "^8.0.1",
"pdf-lib": "^1.17.1",
"popular-english-words": "^1.0.2"
}
}