-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (38 loc) · 981 Bytes
/
package.json
File metadata and controls
40 lines (38 loc) · 981 Bytes
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
{
"name": "strapi-nuxt-tanstack",
"version": "1.0.0",
"description": "Full-stack template with Strapi 5, Nuxt 3, and TanStack Vue Query",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/strapi-nuxt-tanstack.git"
},
"keywords": [
"strapi",
"nuxt",
"vue",
"vue-query",
"tanstack",
"typescript",
"tailwindcss",
"pm2",
"template",
"fullstack"
],
"author": "Alexander Rudin",
"license": "MIT",
"main": "ecosystem.config.js",
"scripts": {
"start": "pm2 start ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"restart": "pm2 restart ecosystem.config.js",
"delete": "pm2 delete ecosystem.config.js",
"logs": "pm2 logs",
"status": "pm2 status",
"dev": "pm2 start ecosystem.dev.config.js",
"dev:stop": "pm2 stop ecosystem.dev.config.js",
"dev:delete": "pm2 delete ecosystem.dev.config.js"
},
"devDependencies": {
"dotenv": "^17.2.3"
}
}