-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
67
68
69
70
71
{
"name": "pick-server-Venus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=development mocha --exit -r ts-node/register src/spec/**/*.spec.ts",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/app.ts",
"cover": "cross-env NODE_ENV=development nyc mocha --exit -r ts-node/register src/spec/**/*.spec.ts",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSM-PICK/pick-server-Venus.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DSM-PICK/pick-server-Venus/issues"
},
"homepage": "https://github.com/DSM-PICK/pick-server-Venus#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/express-winston": "^4.0.0",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.1",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.27",
"@types/sinon": "^9.0.4",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"joi": "^17.2.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25",
"winston": "^3.3.3"
},
"prettier": {
"tabWidth": 2
}
}