-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.72 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "card-game-manager",
"version": "1.0.0",
"description": "Card game parent package to manage front-end and back-end",
"scripts": {
"server:build:prod": "npm run prod:build --prefix server",
"server:start:prod": "npm run prod --prefix server",
"server:start:dev": "npm run dev --prefix server",
"server:start:test": "npm run test --prefix server",
"server:install": "npm ci --prefix server",
"server:tests": "npm run test --prefix server -- --coverage --ci",
"client:build:prod": "npm run build --prefix clientApp",
"client:start:dev": "npm run start --prefix clientApp",
"client:start:test": "npm run test --prefix clientApp",
"client:install": "npm ci --prefix clientApp",
"shared:install": "npm ci --prefix shared-types",
"shared:build": "npm run build --prefix shared-types",
"shared:watch": "npm run watch --prefix shared-types",
"dev": "npm-run-all --parallel client:start:dev server:start:dev shared:watch",
"install:all": "npm-run-all --parallel server:install client:install shared:install",
"format:code": "npx prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n1md7/card-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/n1md7/card-game/issues"
},
"homepage": "https://github.com/n1md7/card-game#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "18.9.1",
"npm": "8.19.1"
},
"engineStrict": true,
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "2.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}