-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
30 lines (30 loc) · 1.16 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
27
28
29
30
{
"name": "astro-chat-app",
"version": "1.0.1",
"description": "Astro Chat Application",
"scripts": {
"seed:data": "npm run seed --prefix server",
"client:test": "npm run test --prefix client",
"server:test:watch": "npm run test:watch --prefix server",
"server:test:ci": "npm run test:ci --prefix server",
"test": "npm run test --prefix client && npm run server:test:ci",
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"build": "npm run build --prefix client",
"start": "npm run start --prefix server",
"heroku-postbuild": "npm install --prefix client && npm install --prefix server && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luvuong-le/astro-chat.git"
},
"author": "Lu-Vuong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luvuong-le/astro-chat/issues"
},
"homepage": "https://github.com/luvuong-le/astro-chat#readme",
"devDependencies": {
"concurrently": "^4.1.0"
},
"dependencies": {}
}