-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.7 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.7 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
{
"name": "comptox-ai-monorepo",
"private": true,
"scripts": {
"install:all": "npm install && npm --prefix web install",
"dev": "concurrently --names \"api,app\" --prefix-colors \"cyan,magenta\" \"npm:dev:api\" \"npm:dev:app\"",
"dev:full": "concurrently --names \"api,app,docs\" --prefix-colors \"cyan,magenta,yellow\" \"npm:dev:api\" \"npm:dev:app\" \"npm:dev:docs\"",
"dev:api": "npm --prefix web run dev --workspace=@comptoxai/comptox-api",
"dev:app": "npm --prefix web run start --workspace=@comptoxai/comptox-app",
"dev:docs": "python -m sphinx_autobuild docs/source docs/build/html --port 8000",
"build:app": "npm --prefix web run build --workspace=@comptoxai/comptox-app",
"build:docs": "python -m sphinx -b html docs/source docs/build/html",
"test:api": "npm --prefix web run test --workspace=@comptoxai/comptox-api",
"lint": "eslint web/packages/api web/packages/app/src"
},
"devDependencies": {
"concurrently": "^9.0.1",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-sort": "^0.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.31",
"postcss-sorting": "^8.0.2",
"prettier": "^3.0.3",
"prettier-plugin-jinja-template": "^1.1.0",
"prettier-plugin-organize-attributes": "^1.0.0",
"stylelint": "^15.10.2",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0"
}
}