-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "minioms",
"version": "1.0.0",
"description": "Mini OMS is an Order Management System with minimal functionality",
"main": "src/index.ts",
"scripts": {
"start": "pm2 start ./dist/index.js -i max -f --name minioms",
"monit": "pm2 monit",
"logs": "pm2 logs",
"build": "rm -rf ./dist && tsc --build",
"dev": "ts-node-dev src/index.ts",
"test": "mocha -r ts-node/register './test/**/*.spec.ts'"
},
"keywords": [
"OMS"
],
"author": "Leandro Cruz",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-json-schema": "^1.4.6",
"@types/express": "^4.17.13",
"@types/express-mung": "^0.5.2",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/validator": "^13.7.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"chai-json-schema": "^1.5.1",
"mocha": "^9.2.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"body-parser": "^1.19.2",
"celebrate": "^15.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mung": "^0.5.1",
"http-status": "^1.5.0",
"mysql2": "^2.3.3",
"pm2": "^5.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"umzug": "^3.0.0"
}
}