-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "tech-radar",
"version": "0.0.1-local",
"private": true,
"description": "Extenda Retail Technology Radar",
"workspaces": [
"packages/app",
"packages/backend",
"packages/builder",
"packages/shared"
],
"scripts": {
"build": "npm run build -ws",
"lint:js": "npm run lint:js -ws",
"start": "npm start -w @tech-radar/app",
"backend": "npm start -w @tech-radar/backend",
"frontend": "npm run frontend -w @tech-radar/app",
"pip:install": "pip install --user -r .scripts/python_requirements.txt",
"test": "npm test --ws",
"yaml:lint": "python .scripts/yaml_lint.py",
"yaml:validate": "python .scripts/yaml_validate.py"
},
"repository": "github:extenda/tech-radar",
"author": {
"name": "Extenda Retail",
"email": "[email protected]",
"url": "https://extendaretail.com"
},
"license": "MIT",
"homepage": "https://github.com/extenda/tech-radar#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar": "^0.2.16",
"prettier": "3.3.3"
}
}