-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "supply-chain-management-system",
"version": "0.0.1",
"description": "supply chain management system developed for semester 4 project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon start",
"lint": "./node_modules/.bin/eslint --ext .js config/ controllers/ helpers/ middlewares/ models/ routes/ services/ index.js",
"lint-fix": "./node_modules/.bin/eslint --fix --ext .js config/ controllers/ helpers/ middlewares/ models/ public/ routes/ services/ index.js",
"migrate": "node-pg-migrate",
"test": "jest --watchAll --verbose --maxWorkers=1 --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lakshan-Banneheke/Supply-Chain-Management-System.git"
},
"keywords": [
"database",
"supply",
"chain",
"management",
"system"
],
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.0-beta1",
"connect-pg-simple": "^6.2.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"dateformat": "^4.4.1",
"dateformater": "^0.1.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"eslint-plugin-unicorn": "^26.0.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"jest": "^26.6.3",
"joi": "^17.3.0",
"node-pg-migrate": "^5.9.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"postgres": "^1.0.2",
"table-to-json": "^1.0.0",
"winston": "^3.3.3",
"xo": "^0.37.1"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-security": "^1.4.0",
"sinon": "^9.2.4",
"supertest": "^6.1.3"
}
}