-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "dreamcatcher-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:check": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/index.ts",
"build": "npm-run-all types:check build:js",
"build:js": "babel -d dist --extensions \".js,.ts\" src",
"types:check": "tsc --noEmit",
"start": "npm run build && node dist/index.js"
},
"dependencies": {
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"pm2": "^5.2.2",
"prettier": "^2.8.4"
},
"keywords": [],
"author": "",
"license": "ISC"
}