-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "uke-web-server",
"version": "0.4.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "npm run dev",
"build": "npm run build-ts",
"serve": "node dist/index.js",
"dev": "nodemon",
"nodemon": "nodemon",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run dev\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SANGET/uke-web-server.git"
},
"author": "Alex",
"license": "MIT",
"bugs": {
"url": "https://github.com/SANGET/uke-web-server/issues"
},
"homepage": "https://github.com/SANGET/uke-web-server#readme",
"devDependencies": {
"@types/async": "^3.0.0",
"@types/bcrypt": "^3.0.0",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/helmet": "^0.0.44",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"@types/morgan": "^1.7.35",
"@types/mysql": "^2.15.7",
"@types/node": "^12.0.10",
"@types/nodemailer": "^6.2.0",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@types/request": "^2.48.1",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"concurrently": "^4.1.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.5.2"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"helmet": "^3.21.1",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"morgan": "^1.9.0",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"telegraf": "^3.32.0",
"typeorm": "^0.2.19",
"unzip": "^0.1.11",
"uuid": "^3.3.3",
"winston": "^3.2.1"
}
}