-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
25 lines (25 loc) · 1006 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
{
"name": "strapi-next-typed",
"version": "1.0.0",
"description": "Strapi Next Typed Frontend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copytypes": "node copyTypes.js",
"frontend": "yarn dev --prefix ../frontend/",
"backend": "yarn dev --prefix ../backend/",
"clear": "cd frontend && rm -rf .next && rm -rf cache",
"setup:frontend": "cd frontend && yarn",
"setup:backend": "cd backend && yarn",
"setup": "yarn install && yarn setup:frontend && yarn setup:backend",
"dev": "yarn clear && yarn copytypes && concurrently \"cd frontend && yarn dev\" \"cd backend && yarn develop\"",
"repo:upstream": "git fetch upstream && git merge upstream/main",
"seed": "cd backend && yarn strapi import -f ../seed-data.tar.gz",
"export": "cd backend && yarn strapi export --no-encrypt -f ../seed-data"
},
"author": "Paul Bratslavsky",
"license": "MIT",
"dependencies": {
"concurrently": "^8.2.1"
}
}