-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "cached_downloader",
"version": "1.0.0",
"description": "Express Api to download and cache files.",
"repository": "github.com",
"author": "sestelos@gmail.com",
"license": "MIT",
"type": "module",
"dependencies": {
"cookie-parser": "^1.4.6",
"debug": "^4.3.2",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"scripts": {
"dev": "NODE_ENV=development yarn run server",
"start": "NODE_ENV=production yarn run server",
"server": "node server/bin/www",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch:dev": "nodemon"
},
"devDependencies": {
"eslint": "^8.2.0",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"nodemonConfig": {
"exec": "yarn run dev",
"watch": [
"server/*"
],
"ignore": [
"**/tests/**",
"*.test.js",
"*.spec.js"
]
}
}