-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 944 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 944 Bytes
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
{
"name": "imagekit-auth-server",
"version": "1.0.0",
"description": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murageh/imagekit-auth-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/murageh/imagekit-auth-server/issues"
},
"homepage": "https://github.com/murageh/imagekit-auth-server#readme",
"dependencies": {
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"imagekit": "^3.2.5",
"method-override": "^3.0.0",
"winston": "^3.8.1"
},
"devDependencies": {
"jest": "^27.4.5"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/test/.*|(\\.|/)(test))\\.(js)x?$"
}
}