-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.96 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
52
53
54
{
"name": "chat-app",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "jakub.jozwiak <kubencki@gmail.com>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"check": "yarn lint:fix && yarn prettier:fix && yarn stylelint && yarn type-check && yarn test && yarn sortPackageJson",
"heroku-postbuild": "yarn install && cd packages/api && yarn build",
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('Use yarn for installing')\"",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"stylelint": "stylelint '**/*.{styled.ts,tsx}'",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"removeNodeModules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"sortPackageJson": "npx sort-package-json && lerna exec npx sort-package-json",
"start": "cd packages/api && yarn start:prod",
"test": "lerna run test",
"type-check": "lerna run type-check"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/config-lerna-scopes": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-regexp": "^0.9.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"engines": {
"node": ">=12",
"yarn": ">=1.2"
}
}