-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "juice-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev:build": "tsc -w",
"dev:up": "nodemon dist/server",
"start": "node dist/server",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.4",
"@types/express-rate-limit": "^5.0.0",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.8",
"@types/uuid": "^7.0.2",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"db-migrate": "^0.11.6",
"db-migrate-mysql": "^2.1.1",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.1.1",
"greenlock-express": "^4.0.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"promise-mysql": "^4.1.3",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/mysql": "^2.15.9",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
}
}