forked from dzcode-io/dzcode.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.17 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
{
"name": "dzcode.io-root",
"private": true,
"workspaces": [
"frontend",
"frontend/firebase",
"data",
"fullstack",
"api/functions"
],
"scripts": {
"start": "concurrently \"cd fullstack && yarn build:watch\" \"cd data && yarn build:watch\" \"cd data && yarn dev\" \"cd frontend && yarn dev\"",
"start:api": "concurrently \"cd fullstack && yarn build:watch\" \"cd data && yarn build:watch\" \"cd data && yarn dev\" \"cd frontend && yarn dev\" \"cd api/functions && firebase emulators:start\"",
"lint:check": "concurrently \"cd fullstack && yarn lint:check\" \"cd data && yarn lint:check\" \"cd frontend && yarn lint:check\"",
"lint:fix": "concurrently \"cd fullstack && yarn lint:fix\" \"cd data && yarn lint:fix\" \"cd frontend && yarn lint:fix\""
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:check"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"concurrently": "^5.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"prettier": "^2.0.5"
}
}