forked from Azure-Samples/copilot-nodejs-todo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 757 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 757 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
{
"name": "copilot-nodejs-todo",
"version": "1.0.0",
"description": "A sample application demonstrating Copilot assistance for developing a Node.js app with a CosmosDB database and deployed on Azure App Service",
"private": true,
"scripts": {
"dev": "concurrently npm:dev:* --kill-others",
"dev:server": "npm start --workspace=server",
"dev:client": "npm start --workspace=client",
"start": "node packages/server/lib/server.js",
"test": "npm test --workspace=server",
"build": "npm run build --workspaces"
},
"author": "Yohan Lasorsa",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^7.6.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}