This repository was archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.57 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
{
"name": "sapbashop",
"version": "1.0.0",
"description": "Inventory management web app",
"main": "src/server.js",
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"start": "parcel build && node src/server.js",
"dev": "NODE_ENV=development nodemon src/server.js",
"dev-pro": "NODE_ENV=production nodemon src/server.js",
"dev-ui": "npm run scss & npm run parcel-watch & npm run dev ",
"dev-ui-pro": "npm run scss & npm run parcel-watch & npm run dev-pro ",
"scss": "sass --watch src/scss/main.scss src/public/css/style.css",
"scss-build": "sass src/scss/main.scss src/public/css/style.css",
"parcel-watch": "parcel watch --no-hmr",
"build-pro": "npm run scss-build && parcel build",
"test": "NODE_ENV=production jest",
"test-watch": "NODE_ENV=production jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smithcli/SapbaShop.git"
},
"author": "Christopher Smith, email: git@smithc.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/smithcli/SapbaShop/issues"
},
"homepage": "https://github.com/smithcli/SapbaShop#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.3",
"morgan": "^1.10.0",
"nodemailer": "^6.7.7",
"pug": "^3.0.2",
"slugify": "^1.6.5",
"validator": "^13.7.0"
},
"devDependencies": {
"cookie-parse": "^0.4.0",
"eslint": "^8.19.0",
"eslint_d": "^12.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^28.1.3",
"mongodb-memory-server": "^8.7.2",
"nodemailer-mock": "^1.5.12",
"nodemon": "^2.0.19",
"os-browserify": "^0.3.0",
"parcel": "^2.7.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"sass": "^1.54.0",
"supertest": "^6.2.4"
},
"jest": {
"testEnvironment": "node",
"globalSetup": "<rootDir>/tests/config/globalSetup.js",
"globalTeardown": "<rootDir>/tests/config/globalTeardown.js",
"setupFilesAfterEnv": [
"<rootDir>/tests/dbHandler.js"
]
},
"targets": {
"main": false,
"fontend-login": {
"source": "src/public/js/sapba-login.mjs",
"distDir": "src/public/js/bundled",
"context": "browser",
"outputFormat": "esmodule"
},
"frontend": {
"source": "src/public/js/sapba.mjs",
"distDir": "src/public/js/bundled",
"context": "browser",
"outputFormat": "esmodule"
}
}
}