-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "pipedeals",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "sucrase ./src -d ./dist --transforms imports",
"dev:server": "nodemon --legacy-watch src/server.js",
"test": "jest --runInBand"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"atob": "^2.1.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"btoa": "^1.2.1",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"date-fns": "^2.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"pirates": "^4.0.5",
"rawurlencode": "^1.0.2",
"slugify": "^1.4.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"@sucrase/jest-plugin": "^2.0.0",
"@types/jest": "^26.0.24",
"babel-eslint": "^10.1.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"factory-girl": "^5.0.4",
"jest": "26.6.3",
"nodemon": "^2.0.2",
"prettier": "^2.3.2",
"sucrase": "^3.12.1",
"supertest": "^6.1.3"
}
}