-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.04 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
{
"name": "switcher-api",
"version": "1.4.1",
"description": "Feature Flag/Toggle API",
"main": "src/start.js",
"type": "module",
"author": {
"name": "Roger Floriano",
"email": "switcher.project@gmail.com"
},
"scripts": {
"start": "node ./src/start.js",
"dev": "env-cmd -e dev -- nodemon ./src/start.js",
"prod": "env-cmd -e prod -- nodemon ./src/start.js",
"lint": "eslint ./src/**/*.js",
"test": "jest --runInBand --collect-coverage",
"test-local": "env-cmd -e test -- jest --runInBand --collect-coverage",
"snyk": "snyk test --strict-out-of-sync=false"
},
"jest": {
"transform": {},
"clearMocks": true,
"testEnvironment": "node",
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/api-docs/",
"<rootDir>/src/external/saml.js",
"<rootDir>/src/app-server.js"
]
},
"keywords": [
"feature",
"flag",
"toggle",
"switcher-api"
],
"license": "MIT",
"dependencies": {
"axios": "^1.13.4",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.1",
"graphql": "^16.12.0",
"graphql-http": "^1.22.4",
"graphql-tag": "^2.12.6",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"moment": "^2.30.1",
"mongodb": "^7.1.0",
"mongoose": "^9.1.6",
"passport": "^0.7.0",
"@node-saml/passport-saml": "^5.1.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"swagger-ui-express": "^5.0.1",
"switcher-client": "^4.5.0",
"validator": "^13.15.26"
},
"devDependencies": {
"env-cmd": "^11.0.0",
"eslint": "^10.0.0",
"jest": "^30.2.0",
"jest-sonar-reporter": "^2.0.0",
"node-notifier": "^10.0.1",
"nodemon": "^3.1.11",
"sinon": "^21.0.1",
"supertest": "^7.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/switcherapi/switcher-api"
}
}