-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
30 lines (30 loc) · 1.1 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
{
"private": true,
"name": "frontend-clean-architecture",
"version": "0.1.0",
"description": "The purpose of this repository is to follow the principles of Clean Architecture in frontend using different frameworks such as ReactJS and VueJs.",
"workspaces": [
"packages/*"
],
"scripts": {
"core": "yarn workspace @frontend-clean-architecture/core",
"react": "yarn workspace @frontend-clean-architecture/react-app",
"vue": "yarn workspace @frontend-clean-architecture/vue-app",
"prettify": "prettier \"packages/**/src/**/*.{js,jsx,json,css,ts,tsx,vue}\" --write",
"lint": "eslint packages/*/src/ --ext ts,tsx,vue",
"test": "yarn core test && yarn react test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "8.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
}
}