-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 959 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
39
40
41
42
43
44
45
46
{
"name": "bridge-node-starter",
"version": "0.0.0",
"description": "Node server starter",
"engines": {
"node": ">=10.15"
},
"scripts": {
"start": "node src/index.js",
"test": "jest",
"start:local": "NODE_ENV=development nodemon src/index.js",
"test:watch": "jest --watch"
},
"author": "",
"devDependencies": {
"jest": "^22.4.4",
"nodemon": "^1.17.5",
"supertest": "^3.1.0"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"firebase-admin": "^6.0.0",
"moment": "^2.24.0",
"morgan": "^1.9.0",
"winston": "^3.0.0"
},
"nodemonConfig": {
"ignore": [
"**/*.test.js",
"**/*.spec.js",
".git",
"node_modules"
]
},
"jest": {
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js)$",
"moduleFileExtensions": [
"js",
"json"
]
}
}