-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "marvel-characters",
"version": "1.0.0",
"description": "A Node.js implementation of RESTful APIs to fetch Marvel character information",
"main": "index.js",
"engines": {
"node": ">=8",
"yarn": "*"
},
"scripts": {
"dev": "nodemon ./src/index.js",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuroitaki/marvel-characters.git"
},
"author": "Christopher Chong",
"license": "ISC",
"bugs": {
"url": "https://github.com/yuroitaki/marvel-characters/issues"
},
"homepage": "https://github.com/yuroitaki/marvel-characters#readme",
"dependencies": {
"axios": "^0.21.1",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-validation": "^3.0.8",
"http-status": "^1.5.0",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.27.0",
"eslint-config-astro": "^1.0.8",
"eslint-plugin-import": "^2.23.3",
"jest": "^27.0.1",
"jest-express": "^1.12.0",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.7"
},
"jest": {
"testRegex": "(/src/.*)\\.test.js$",
"setupFilesAfterEnv": [
"jest-extended"
]
}
}