-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
{
"name": "cronpilot",
"version": "2.0.0",
"author": "Christian Kellner",
"license": "Apache-2.0",
"scripts": {
"dev:server": "yarn --cwd server dev",
"dev:client": "yarn --cwd client dev",
"dev": "yarn dev:server & yarn dev:client",
"build": "yarn --cwd client build",
"test:server": "yarn --cwd server test --run",
"test:client": "yarn --cwd client test --run",
"test": "yarn test:server && yarn test:client",
"start": "yarn build && yarn --cwd server start",
"inst": "yarn install && yarn --cwd client install && yarn --cwd server install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-react": "latest",
"globals": "latest",
"husky": "latest",
"lint-staged": "latest",
"prettier": "latest"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md}": "prettier --write"
}
}