-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
28 lines (28 loc) · 979 Bytes
/
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
{
"name": "nuxt-typescript-strapi-boilerplate",
"version": "0.1.0",
"description": "nuxt-typescript-strapi-boilerplate powered by NikolasMelui and RinatDav.",
"author": {
"name": "nikolasmelui",
"email": "[email protected]",
"url": "https://github.com/nikolasmelui"
},
"maintainers": [
{
"name": "nikolasmelui",
"email": "[email protected]",
"url": "https://github.com/nikolasmelui"
}
],
"scripts": {
"install": "(cd server && npm install) && (cd client && npm install)",
"build": "concurrently \"cd server && npm run build\" \"cd client && npm run build\"",
"start": "(cd server && npm run start:pm2) && (cd client && npm run start:pm2)",
"start:db": "docker-compose up -d",
"restart": "(cd server && npm run restart:pm2) && (cd client && npm run restart:pm2)",
"stop": "(cd server && npm run stop:pm2) && (cd client && npm run stop:pm2)"
},
"dependencies": {
"concurrently": "^4.1.0"
}
}