-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.29 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.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
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
{
"name": "laundry-be",
"version": "1.0.0",
"description": "Laundry Backend",
"main": "app.js",
"directories": {
"test": "tests"
},
"scripts": {
"babel": "babel-node",
"start": "npm run babel -- src/app.js",
"dev": "nodemon --exec npm run babel -- ./src/app.js",
"migration:create": "cross-var sequelize-cli migration:generate --migrations-path=src/database/migrations --name=$npm_config_name",
"migration:run": " cross-var sequelize-cli db:migrate ",
"migration:undo": "cross-var sequelize-cli db:migrate:undo --name $npm_config_name.js",
"migration:undo:all": "cross-var sequelize-cli db:migrate:undo:all",
"seed:create": "cross-var sequelize-cli seed:generate --seeders-path=src/database/seeders --name=$npm_config_name",
"seed:run": " cross-var sequelize-cli db:seed --seed $npm_config_name.js",
"seed:run:all": " sequelize-cli db:seed:all",
"seed:undo": "cross-var sequelize-cli db:seed:undo --seed $npm_config_name.js",
"seed:undo:all": "sequelize-cli db:seed:undo:all",
"db:refresh": "npm run migration:undo:all && sequelize-cli db:migrate && sequelize-cli db:seed:all",
"test": "mocha --require @babel/register --recursive 'test/**/*.test.js'",
"test:watch": "nodemon --exec mocha --require @babel/register --recursive 'test/**/*.test.js' ",
"coverage": "nyc --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futuretechnologysolution/laundry-be.git"
},
"author": "FTS",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"chai": "^4.3.7",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.1",
"sequelize-cli": "^6.6.1"
},
"bugs": {
"url": "https://github.com/futuretechnologysolution/laundry-be/issues"
},
"homepage": "https://github.com/futuretechnologysolution/laundry-be#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"chalk": "^4",
"cors": "^2.8.5",
"cross-var": "^1.1.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-useragent": "^1.0.15",
"express-validation": "^4.1.0",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"nanoid": "^4.0.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.2",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1",
"sequelize-hierarchy": "^2.0.4",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
},
"sequelize": "^6.32.1"
}
}