-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.78 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
52
53
54
55
{
"name": "np-bingo",
"private": true,
"version": "1.4.8",
"description": "http://dev.tadjhbrooks.com/np-bingo/",
"main": "index.js",
"scripts": {
"server-test": "echo \"Error: no test specified\" && exit 1",
"client-test": "yarn workspace @np-bingo/client test",
"test": "run-p client-test",
"server-dev": "yarn workspace @np-bingo/server dev",
"server-start": "yarn workspace @np-bingo/server start",
"client-start": "yarn workspace @np-bingo/client start",
"start": "run-p server-start client-start",
"start-dev": "run-p server-dev client-start",
"common-build": "yarn workspace @np-bingo/common build",
"server-build": "yarn workspace @np-bingo/server build",
"client-build": "yarn workspace @np-bingo/client build",
"build": "run-s common-build server-build client-build",
"publish-types": "yarn workspace @np-bingo/types publish",
"publish-common": "yarn workspace @np-bingo/common publish",
"publish-deps": "run-s publish-types publish-common",
"storybook": "yarn workspace @np-bingo/client storybook",
"cypress:open": "yarn workspace @np-bingo/client cypress:open",
"cypress:test": "yarn workspace @np-bingo/client cypress:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TadjhBrooks/np-bingo.git"
},
"keywords": [],
"author": "Tadjh Brooks",
"license": "ISC",
"bugs": {
"url": "https://github.com/TadjhBrooks/np-bingo/issues"
},
"homepage": "https://github.com/TadjhBrooks/np-bingo#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "2.3.2"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"babel-loader": "8.1.0"
},
"engines": {
"node": "14.16.1",
"npm": "6.14.12"
},
"dependencies": {
"cypress": "8.4.0"
}
}