-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.38 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": "saasterkit-express",
"version": "1.0.0",
"description": "A Node.js &Express Boilerplate Kit designed to simplify the development process and accelerate the creation of modern web applications with pre-configured essential features.",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"typescript",
"backend"
],
"author": "Leandro Ercoli",
"license": "ISC",
"dependencies": {
"@clerk/clerk-sdk-node": "^5.0.12",
"@lemonsqueezy/lemonsqueezy.js": "^3.2.0",
"@prisma/client": "^5.16.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"svix": "^1.24.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-array-reduce": "^1.0.62",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"ts-node": "^10.9.2"
}
}