-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@stack/sofortexperte",
"version": "0.0.1",
"description": "Weil wir selbst sowas benutzen würden",
"private": true,
"scripts": {
"api": "yarn workspace @stack/api",
"ui": "yarn workspace @stack/ui",
"ui:test:ci": "yarn ui test:ci",
"ui:lint": "yarn ui lint",
"ui:tslint": "yarn ui tslint",
"web": "yarn workspace @stack/web",
"web:test:ci": "yarn web test:ci",
"web:lint": "yarn web lint",
"web:tslint": "yarn web tslint",
"test": "concurrently 'yarn:*:test:ci'",
"lint": "concurrently 'yarn:*:lint'",
"tslint": "concurrently 'yarn:*:tslint'",
"prettier": "prettier --write .",
"pubcp": "rm -rf web/public ui/public && cp -r static web/public && cp -r static ui/public",
"postinstall": "yarn pubcp && yarn api postinstall"
},
"keywords": [],
"author": "Firat",
"license": "UNLICENSED",
"workspaces": [
"ui",
"web",
"api"
],
"dependencies": {
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.4"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.4.21",
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"concurrently": "^6.3.0",
"eslint": "^7",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "4.11.0",
"postcss": "^8.3.11",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^2.2.19"
},
"jest": {
"moduleNameMapper": {
"^@/ui(.*)$": "<rootDir>/ui/src$1",
"^@/web(.*)$": "<rootDir>/web/src$1"
}
}
}