-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
{
"name": "mango-deliveries",
"version": "1.0.0",
"description": "EVE Online freighting service",
"engines": {
"node": "14.17.3"
},
"main": "dist/bin/www.js",
"scripts": {
"postinstall": "cd client && npm install",
"clean": "rimraf dist/*",
"lint": "eslint \"**/*.ts\"",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"start": "node --harmony --trace-warnings .",
"start:dev": "nodemon --harmony --trace-warnings --watch \"src/**\" --ext \"ts,json\" .",
"dev:server": "npm-run-all build start:dev",
"dev:client": "cd client && npm run build:start",
"dev": "npm-run-all --parallel dev:server dev:client"
},
"repository": {
"type": "git",
"url": "https://github.com/DrSmugleaf/Mango-Deliveries.git"
},
"author": "DrSmugleaf",
"license": "MIT",
"dependencies": {
"async": "3.2.0",
"common-tags": "1.8.0",
"connect-session-sequelize": "7.1.1",
"cookie-parser": "1.4.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"express-session": "1.17.2",
"helmet": "4.6.0",
"moment-timezone": "0.5.33",
"morgan": "1.10.0",
"mysql2": "2.2.5",
"request": "2.88.2",
"request-promise": "4.2.6",
"rimraf": "3.0.2",
"sequelize": "6.6.5",
"valid-url": "1.0.9",
"winston": "3.3.3",
"yaml": "1.10.2"
},
"devDependencies": {
"@types/async": "3.2.7",
"@types/cookie-parser": "1.4.2",
"@types/debug": "4.1.6",
"@types/express": "4.17.13",
"@types/express-session": "1.17.4",
"@types/morgan": "1.9.3",
"@types/node": "16.3.3",
"@types/pug": "2.0.5",
"@types/request-promise": "4.1.48",
"@types/sequelize": "4.28.10",
"@types/valid-url": "1.0.3",
"@types/validator": "13.6.3",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"babel-eslint": "latest",
"benchmark": "latest",
"chai": "latest",
"eslint": "latest",
"foreman": "latest",
"mocha": "latest",
"nodemon": "latest",
"npm-run-all": "4.1.5",
"nsp": "latest",
"tslint": "6.1.3",
"typescript": "4.3.5"
}
}