-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.01 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.01 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
{
"name": "commtrackr",
"version": "1.1.2",
"description": "Easily plan, manage, and track client commissions.",
"main": "index.js",
"files": [
"index.js",
"frontend/"
],
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "npx jest"
},
"keywords": [
"commission",
"commissions",
"tracking",
"management"
],
"author": "Dango Web Solutions",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^8.0.1",
"node-fetch": "^3.3.2",
"path": "^0.12.7"
},
"devDependencies": {
"jest": "^30.2.0",
"nodemon": "^3.0.1",
"supertest": "^7.1.4",
"express-session": "^1.17.3",
"memorystore": "^1.6.7"
},
"repository": {
"type": "git",
"url": "https://github.com/DangoWeb/CommTrackr.git"
},
"bugs": {
"url": "https://github.com/DangoWeb/CommTrackr/issues"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"homepage": "https://commtrackr.dangoweb.com"
}