-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 973 Bytes
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
{
"name": "crowdlinker",
"private": true,
"scripts": {
"dev:backend": "yarn workspace @crowdlinker/backend start:dev",
"dev:frontend": "yarn workspace @crowdlinker/frontend start:dev",
"prepare": "cross-env-shell scripts/yarn-prepare.sh",
"lint": "yarn workspaces run lint",
"fix": "yarn workspaces run lint --fix",
"build": "yarn workspaces run build"
},
"engines": {
"node": "^14.15.0"
},
"workspaces": {
"packages": [
"packages/*",
"packages/*/*"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"git-format-staged": "^2.1.2",
"husky": "^7.0.2",
"prettier": "^2.4.1"
}
}