-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "p2p-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "babel src --out-dir dist --copy-files",
"dev": "nodemon --exec yarn run babel-node -- ./src/index.js",
"restart": "rimraf dist && yarn run start",
"serve": "node dist/firebase_decrypt.js && node dist/index.js",
"start": "yarn run build && yarn run serve",
"test": "cross-env NODE_ENV=testing jest --detectOpenHandles --runInBand --forceExit --coverage",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"lint:fix": "yarn run lint --fix"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "~4.16.1",
"firebase-admin": "^9.1.1",
"helmet": "^4.1.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.10.2",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/preset-env": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"cross-env": "^7.0.2",
"cuid": "^2.1.8",
"eslint": "^7.11.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"rimraf": "^2.6.2",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=12.x <=14.x"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test-db-setup.js"
],
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
}
}