-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.1 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.1 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
96
97
98
{
"name": "deployd",
"version": "1.2.0",
"author": "Ritchie Martori",
"license": "Apache-2.0",
"description": "the simplest way to build realtime APIs for web and mobile apps",
"repository": {
"url": "git://github.com/deployd/deployd.git"
},
"engines": {
"node": ">= 22.0.0"
},
"main": "index",
"files": [
"lib",
"index.js",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"async": "^3.2.6",
"axios": "^1.7.9",
"bluebird": "^3.7.2",
"cookies": "^0.9.1",
"corser": "^2.0.1",
"debug": "^4.3.7",
"deployd": "file:./",
"doh": "^0.0.4",
"ejs": "^3.1.10",
"express-rate-limit": "^7.1.5",
"filed-mimefix": "^0.1.3",
"mongodb": "^6.10.0",
"opossum": "^8.1.3",
"prom-client": "^15.1.0",
"qs": "^6.13.1",
"scrubber": "0.0.0",
"send": "^0.19.1",
"shelljs": "^0.8.5",
"socket.io": "^4.8.1",
"underscore": "^1.13.7",
"uuid": "^9.0.1",
"validation": "0.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"chai": "^5.1.2",
"deployd-cli": "^2.0.0",
"dotenv": "^17.2.3",
"less": "^4.2.1",
"mocha": "^10.8.2",
"mocha-jshint": "2.3.1",
"release-it": "^17.10.0",
"rewire": "^7.0.0",
"sinon": "^19.0.2"
},
"scripts": {
"start": "cd example-app && node development.js",
"start:prod": "cd example-app && NODE_ENV=production node production.js",
"test": "mocha --timeout 10000 --exit",
"test:unit": "mocha 'test/**/*.unit.js' --timeout 10000 --exit",
"test:e2e": "node test/e2e-endpoints.test.js && node test/e2e-crud.test.js",
"release": "release-it"
},
"overrides": {
"dpd-dashboard": {
"async": "^3.2.6"
}
},
"dpdIgnore": [
"axios",
"async",
"bluebird",
"cookies",
"corser",
"debug",
"doh",
"express-rate-limit",
"mongodb",
"opossum",
"prom-client",
"qs",
"scrubber",
"send",
"shelljs",
"socket.io",
"underscore",
"uuid",
"validation",
"winston",
"chai",
"less",
"mocha",
"mocha-jshint",
"rewire",
"sinon",
"release-it"
]
}