-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
54 lines (54 loc) · 1.96 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
{
"name": "windowsterminalthemes",
"baseUrl": "http://localhost:3000",
"version": "1.0.0",
"private": true,
"description": "monorepo for windowsterminalthemes client and api",
"main": "index.js",
"workspaces": [
"app",
"server"
],
"scripts": {
"test": "yarn workspace @windowsterminalthemes/app test:run && yarn workspace @windowsterminalthemes/app cy:ci",
"ci": "start-server-and-test start:server http-get://localhost:3001 build:app http-get://localhost:3000 test",
"build:app": "yarn workspace @windowsterminalthemes/app build:run",
"start:app": "yarn workspace @windowsterminalthemes/app start",
"start:server": "yarn workspace @windowsterminalthemes/server dev",
"start": "concurrently --kill-others-on-fail \"yarn start:server\" \"yarn start:app\"",
"cy:open": "yarn workspace @windowsterminalthemes/app cy:open",
"cy:run": "yarn workspace @windowsterminalthemes/app cy:run",
"test:dev": "yarn workspace @windowsterminalthemes/app test:run && yarn workspace @windowsterminalthemes/app cy:run",
"unit:watch": "yarn workspace @windowsterminalthemes/app test:watch",
"deploy": "yarn workspace @windowsterminalthemes/app deploy",
"lint": "eslint app/src/**/*.js --max-warnings 5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomcorp/terminal.git"
},
"keywords": [
"windowsterminalthemes",
"windows terminal",
"themes"
],
"author": "atomcorp",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomcorp/terminal/issues"
},
"homepage": "https://github.com/atomcorp/terminal#readme",
"devDependencies": {
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
},
"dependencies": {
"start-server-and-test": "^1.14.0"
}
}