-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "sinchinappcalling_samplefcmauthserver",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"npm": ">=10",
"node": ">=20"
},
"scripts": {
"test": "jest --config __test__/jest.config.json",
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"googleapis": "^132.0.0",
"nodemon": "^3.0.3"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "3.2.5",
"supertest": "^6.3.4"
}
}