-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.7 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.7 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "crap-stories-node",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=17.x",
"npm": ">=8.x"
},
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"start:inspect": "npm run build && node --inspect dist/index.js",
"start:watch": "nodemon --ignore dist/ --exec npm start",
"test": "jest --coverage --watch --runInBand",
"test:ci": "jest --coverage --watchAll=false --runInBand",
"build": "swc src -d dist --copy-files",
"heroku-postbuild": "npm run build && npm run migrate",
"migrate": "node -r @swc-node/register node_modules/.bin/knex migrate:latest",
"lint": "eslint src/**/*.js"
},
"eslintConfig": {
"env": {
"node": true,
"es2021": true,
"jest": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {}
},
"author": "",
"license": "WTFPL",
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.10",
"@graphql-tools/schema": "^8.3.10",
"@graphql-tools/schema-merging": "^5.0.1-alpha-78275ec.0",
"@graphql-tools/utils": "^8.6.9",
"@hapi/joi": "17.1.1",
"apollo-server-express": "^3.6.7",
"aws-sdk": "^2.1125.0",
"body-parser": "1.20.0",
"compression": "1.7.4",
"consola": "2.15.3",
"cors": "2.8.5",
"dotenv": "16.0.0",
"express": "4.17.3",
"express-joi-validation": "5.0.1",
"http-status": "1.5.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"knex": "1.0.5",
"pg": "8.7.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@swc-node/register": "1.4.2",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.165",
"@swc/jest": "0.2.20",
"eslint": "8.13.0",
"jest": "27.5.1",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"supertest": "6.2.2"
},
"jest": {
"transform": {
"^.+\\.(t|j)s?$": [
"@swc/jest"
]
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules/",
"src/config/"
],
"watchPathIgnorePatterns": [
"node_modules/",
"src/config/",
"dist/",
"coverage/"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"coverageReporters": [
"cobertura",
"json",
"lcov",
"text"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js?$",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testPathIgnorePatterns": [
"node_modules/",
"dist/",
"coverage/"
]
},
"prettier": {
"printWidth": 140
}
}