-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "node-saas-base-api",
"main": "index.js",
"version": "0.0.0",
"description": "## Description This project is a base API for a Software as a Service (SaaS) application built with Node.js. It provides a starting point for developing scalable and maintainable SaaS applications.",
"author": "Arthur Cabral <63428806+CabralArthur@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node build/index.js",
"start:dev": "NODE_ENV=development nodemon --delay 500ms --inspect --exec babel-node index.js",
"lint": "eslint --ext .js ./src ./migrations",
"lint:fix": "npm run lint --fix",
"build": "npm run build:api",
"build:api": "babel ./index.js --out-dir ./build && babel ./src --out-dir ./build/src"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@casl/ability": "^6.7.2",
"@sendgrid/mail": "^8.1.4",
"aws-sdk": "^2.1599.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"helmet": "^5.0.2",
"http-status": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"prisma": "^5.22.0",
"sanitize-html": "^2.7.0",
"sequelize": "^6.37.5",
"stripe": "^17.5.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"babel-plugin-module-resolver": "^4.1.0",
"copy": "^0.3.2",
"eslint": "^8.8.0",
"semver": "^7.3.5"
},
"resolutions": {
"graceful-fs": "4.x.x"
}
}