forked from Azure-Samples/copilot-nodejs-todo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 869 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
29
30
31
{
"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": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@azure/cosmos": "^4.0.0",
"@types/node": "^20.14.11",
"rimraf": "^6.0.1"
}
}