This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "react-clean-practice",
"version": "0.1.0",
"private": true,
"description": "Practice for React with Unstated-next x Clean Architecture x Monorepo",
"author": "danmaq",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/danmaq/react-clean-practice/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danmaq/react-clean-practice.git"
},
"scripts": {
"as:adapters": "npm --prefix c-adapters run",
"as:entities": "npm --prefix a-entities run",
"as:frameworks": "npm --prefix d-frameworks run",
"as:usecases": "npm --prefix b-usecases run",
"build": "npm run as:frameworks -- build",
"eject": "npm run as:frameworks -- eject",
"lint": "run-s --continue-on-error \"as:* -- lint\"",
"serve": "npm run as:frameworks -- serve",
"start": "npm run as:frameworks -- start",
"test": "npm run as:frameworks -- test"
},
"workspaces": [
"a-entities",
"b-usecases",
"c-adapters",
"d-frameworks"
],
"engines": {
"node": ">=15.3",
"npm": ">=7.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.2"
}
}