-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.7 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
68
69
70
{
"name": "entipic-cdn",
"version": "1.0.0",
"description": "Entipic CDN",
"main": "./lib/app.js",
"private": true,
"scripts": {
"start": "node ./lib/app.js",
"dev": "npm run tsc && node ./lib/app.js",
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose ./lib/*.test.js ./lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./lib/*.test.js",
"watch": "npm-watch start"
},
"watch": {
"start": {
"patterns": [
"lib"
],
"extensions": "js",
"quiet": true,
"legacyWatch": true,
"delay": 2000
}
},
"engines": {
"node": ">=16.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/entipic/entipic.cdn.git"
},
"keywords": [
"entipic",
"entipic.cdn",
"proxy"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entipic/entipic.cdn/issues"
},
"homepage": "https://github.com/entipic/entipic.cdn#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongodb": "^4.0.7",
"@types/sharp": "^0.29.5",
"npm-watch": "^0.4.0",
"rimraf": "^2.6.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@entipic/data": "^1.2.5",
"@entipic/domain": "^1.2.8",
"axios": "^0.27.1",
"cors": "^2.8.5",
"debug": "^4.1.0",
"dotenv": "^6.1.0",
"express": "^4.18.0",
"mongodb": "^4.13.0",
"sharp": "^0.30.5"
}
}