This repository was archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.45 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "anam-food-backend",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"prebuild": "tsc --build",
"build": "babel tsbuild --out-dir dist",
"start": "node dist/src/index.js",
"prod": "cross-env NODE_ENV=production yarn start",
"dev": "cross-env NODE_ENV=development nodemon --watch src --exec ts-node src/index.ts",
"eslint": "eslint src/**/*.ts",
"pretest": "yarn eslint",
"test": "cross-env NODE_ENV=test nyc mocha --exit -r ts-node/register test/**/*.spec.ts --timeout 100000",
"precoverage": "yarn eslint",
"coverage": "NODE_ENV=test nyc --reporter=lcov mocha --exit -r ts-node/register test/**/*.spec.ts --timeout 100000"
},
"repository": "https://github.com/KU-KOSMOS/anam-food-backend.git",
"author": "BeLeap <changseo_jang@korea.ac.kr>",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/polyfill": "^7.12.1",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jsdoc-swagger": "^1.3.1",
"joi": "^17.4.0",
"morgan": "^1.10.0",
"pg": "^8.4.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@types/assert": "^1.5.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.9.1",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"assert": "^2.0.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"typescript": "^4.0.2"
}
}