-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
26 lines (26 loc) · 1.05 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
{
"name": "tutorial-movie-quotes-app",
"private": true,
"scripts": {
"setup": "npm run apps:install && npm run apps:setup",
"apps:install": "npm install --prefix apps/movie-quotes-api && npm install --prefix apps/movie-quotes-frontend",
"apps:setup": "npm run setup --prefix apps/movie-quotes-api && npm run setup --prefix apps/movie-quotes-frontend",
"test": "standard | snazzy",
"dev": "concurrently -n api,frontend 'npm run dev --prefix apps/movie-quotes-api' 'npm run dev --prefix apps/movie-quotes-frontend'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/tutorial-movie-quotes-app.git"
},
"author": "Simon Plenderleith <[email protected]> (https://simonplend.com/)",
"bugs": {
"url": "https://github.com/platformatic/tutorial-movie-quotes-app/issues"
},
"homepage": "https://github.com/platformatic/tutorial-movie-quotes-app#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"concurrently": "^8.1.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0"
}
}