-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
25 lines (25 loc) · 866 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": "smiler",
"author": "Darkzarich",
"version": "1.0.0",
"description": "Smiler project monorepository.",
"scripts": {
"dev": "concurrently --kill-others \"npm --prefix server run dev\" \"npm --prefix client run dev\"",
"front:build": "npm --prefix client run build",
"front:dev": "npm --prefix client run dev",
"back:dev": "npm --prefix server run dev",
"back:serve": "npm --prefix server start",
"postinstall": "(cd client && npm i); (cd server && npm i);",
"lint:spell": "cspell --no-progress .",
"test:all": "(cd server && npm run test); (cd client && npm run test:e2e);"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Darkzarich/Smiler/issues"
},
"homepage": "https://github.com/Darkzarich/Smiler#readme",
"devDependencies": {
"concurrently": "^7.6.0",
"cspell": "^8.8.1"
}
}