-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "Project11-B-Web-FE-Performance-Monitoring-Server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/app.ts",
"start": "cross-env NODE_ENV=production ts-node src/app.ts",
"test": "NODE_ENV=test jest",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,tsx}\"",
"prettier": "prettier --write --config \"./.prettierrc\" \"./**/*.{js,jsx,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcamp-2020/Project11-B-Web-FE-Performance-Monitoring-Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boostcamp-2020/Project11-B-Web-FE-Performance-Monitoring-Server/issues"
},
"homepage": "https://github.com/boostcamp-2020/Project11-B-Web-FE-Performance-Monitoring-Server#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"@types/koa": "^2.11.6",
"@types/mongoose": "^5.10.1",
"@types/node": "^14.14.9",
"@types/crypto-js": "^4.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/nodemailer": "^6.4.0",
"@types/node-fetch": "^2.5.7",
"cross-env": "^7.0.2",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"mongoose": "^5.10.15",
"nodemailer": "^6.4.16",
"node-fetch": "^2.6.1"
}
}