-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 2.09 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
{
"name": "thymio_2_plus",
"private": true,
"packageManager": "[email protected]",
"version": "1.0.0",
"scripts": {
"dev": "turbo run dev --parallel --no-cache --concurrency=30",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules && rm -rf docs",
"build": "turbo run build --filter=./packages/mobsya-helper --force && turbo run build --filter=./packages/data-model --force && turbo run build --filter=!./apps/* --force && turbo run build --filter=./apps/* --force",
"test": "turbo run test --filter=!./backend/*",
"posttest": "yarn mergeTest && yarn report",
"mergeTest": "npx junit-merge -d packages --recursive -o documentation/documents/test-results/merged-results.xml --createDir=true && cd ./documentation/documents/ && node mdxParser.mjs",
"report": "npx junit-viewer --results=documentation/documents/test-results/merged-results.xml --save=documentation/documents/test-results/index.html",
"test:watch": "turbo run test:watch",
"storybook": "turbo run storybook --filter=./documentation/storybook",
"build:storybook": "turbo run build --filter=./documentation/storybook",
"commit": "cz"
},
"devDependencies": {
"turbo": "latest",
"prettier": "^2.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"@react-native-community/eslint-config": "^3.2.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-jest":"^27.2.1",
"eslint-plugin-ft-flow":"^2.0.3",
"commitizen": "^4.2.5",
"junit-merge": "^2.0.0",
"junit-viewer": "^4.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"apps/openwrt-config-dashboard",
"packages/*",
"documentation/*",
"backend/*"
]
}