-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "my-api",
"author": "Chad McElligott <[email protected]>",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "node server.js",
"prettify": "prettier --write \"**/*.js\" \"!coverage/**\"",
"test": "jest",
"cover": "jest --coverage && open coverage/lcov-report/index.html",
"ci-test": "jest --coverage && codecov",
"deploy": "bin/deploy.sh"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
"config": "^3.3.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"raven": "^2.6.4",
"redis": "^3.0.2",
"request": "^2.88.2"
},
"devDependencies": {
"codecov": "^3.8.1",
"env-test": "^1.0.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/chadxz/my-api.git"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"license": "MIT",
"jest": {
"cacheDirectory": "node_modules/.cache",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"**/*.js",
"!node_modules/**",
"!test/**",
"!config/**",
"!coverage/**"
],
"restoreMocks": true,
"resetModules": true,
"errorOnDeprecated": true,
"projects": [
{
"displayName": "test"
},
{
"displayName": "eslint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.js"
]
}
]
}
}