This repository was archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.39 KB
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
{
"name": "@katt/shop",
"version": "0.0.0",
"description": "",
"author": "KATT",
"scripts": {
"precommit": "lint-staged",
"build:api": "cd api && yarn build",
"build:web": "cd web && yarn build",
"build:e2e": "cd e2e && yarn build",
"nuke:prisma": "cd api && yarn delete:local",
"setup:prisma": "cd api && yarn deploy:local && yarn seed:local",
"build": "npm-run-all --parallel build:*",
"start:api": "cd api && yarn start",
"start:web": "cd web && yarn start -- -p 5000",
"start:e2e": "cd e2e && yarn start",
"start:prisma": "cd api && yarn prisma local start",
"dev:api": "cd api && yarn dev",
"dev:web": "cd e2e && yarn dev",
"dev:e2e": "cd web && yarn dev",
"dev": "npm-run-all --parallel dev:*",
"test:api": "cd api && yarn test",
"test:e2e": "yarn start:e2e",
"test": "npm-run-all --parallel test:*",
"selenium": "selenium-server -port 4444",
"wait-ports": "yarn wait-port 4000 && yarn wait-port 5000"
},
"workspaces": ["api", "e2e", "web"],
"private": true,
"lint-staged": {
"*.{ts,tsx}!api/src/generated/*.ts": [
"prettier --parser typescript --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"husky": "3.1.0",
"lint-staged": "10.1.5",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"tslint": "6.1.1",
"typescript": "3.5.3",
"wait-port": "0.2.7"
}
}