-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
{
"private": true,
"name": "daggre",
"repository": "git@github.com:timkpaine/daggre.git",
"author": "Tim Paine <t.paine154@gmail.com>",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"watch:build": "cd js && yarn build:esbuild --watch",
"example:js:server": "http-server -p 3000 -o examples/js",
"example:js": "npm-run-all -p example:js:server watch:build",
"example:py:server": "cd examples/python && uvicorn server:app --host 0.0.0.0 --port 4000",
"example:py": "npm-run-all -p example:py:server watch:build",
"example:ipc": "cd examples/ipc && python main.py",
"develop:py": "make -C python develop",
"develop:js": "cd js; yarn",
"develop": "npm-run-all develop:*",
"build:js": "cd js; yarn build",
"build:py": "make -C python build",
"build": "npm-run-all build:*",
"lint:py": "make -C python lint",
"lint:js": "cd js; yarn lint",
"lint": "npm-run-all lint:*",
"lints": "yarn lint",
"fix:py": "make -C python fix",
"fix:js": "cd js; yarn fix",
"fix": "npm-run-all fix:*",
"checks:py": "make -C python checks",
"checks:js": ":",
"checks": "npm-run-all checks:py checks:js",
"check": "yarn checks",
"tests:py": "make -C python tests",
"tests:js": "cd js; yarn test",
"tests": "npm-run-all tests:*",
"test": "yarn tests"
},
"workspaces": [
"js"
],
"devDependencies": {
"esbuild": "^0.17.11",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4"
}
}