-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 2.06 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
{
"name": "dev.santiagomartin.devops",
"version": "1.8.0",
"description": "DevOps tool for Stream Deck",
"repository": "https://github.com/SantiMA10/devops-streamdeck.git",
"author": "Santiago Martín <hi@santiagomartin.dev>",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:plugin": "yarn test plugin",
"test:plugin:watch": "yarn test:watch",
"dev:setup": "parcel src/dev.santiagomartin.devops.sdPlugin/setup/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/setup --public-url ./",
"dev:pi": "parcel src/dev.santiagomartin.devops.sdPlugin/pi/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/pi --public-url ./",
"dev:plugin": "parcel src/dev.santiagomartin.devops.sdPlugin/plugin/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/plugin --public-url ./",
"build:setup": "parcel build src/dev.santiagomartin.devops.sdPlugin/setup/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/setup --public-url ./",
"build:pi": "parcel build src/dev.santiagomartin.devops.sdPlugin/pi/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/pi --public-url ./",
"build:plugin": "parcel build src/dev.santiagomartin.devops.sdPlugin/plugin/index.html --dist-dir dist/dev.santiagomartin.devops.sdPlugin/plugin --public-url ./",
"build": "rm -Rf dist && yarn build:plugin && yarn build:pi && yarn build:setup && cp manifest.json dist/dev.santiagomartin.devops.sdPlugin/manifest.json && cp -Rf images dist/dev.santiagomartin.devops.sdPlugin/images"
},
"dependencies": {
"parcel": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@swc/core": "^1.2.148",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@types/node": "14",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"jest": "^27.5.1",
"nock": "^13.2.4",
"typescript": "^4.6.2",
"whatwg-fetch": "^3.6.2"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": ">= 14"
}
}