-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 3.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "smart-gate",
"version": "1.20.0",
"private": true,
"description": "Smart Gate project - for opening physical home/garage gate",
"repository": "[email protected]:Jozwiaczek/smart-gate.git",
"license": "MIT",
"author": "jakub.jozwiak <[email protected]>",
"contributors": [
{
"name": "Jakub Jóźwiak",
"email": "[email protected]"
},
{
"name": "Mateusz Nestorowicz",
"email": "[email protected]"
}
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"check": "yarn lint:fix && yarn prettier:fix && yarn type-check && yarn test && yarn sortPackageJson",
"heroku-postbuild": "yarn install && cd packages/api && yarn typeorm-migration:run && 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",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"removeNodeModules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"removeEslintCaches": "find . -name \".eslintcache\" -prune -exec rm '{}' +",
"sortPackageJson": "sort-package-json && lerna exec sort-package-json",
"start": "cd packages/api && yarn start:prod",
"start:ci": "concurrently \"cd packages/client && NODE_ENV=test yarn start\" \"cd packages/api && NODE_ENV=test yarn start\"",
"test": "lerna run test",
"type-check": "lerna run type-check"
},
"resolutions": {
"babel-loader": "8.1.0"
},
"dependencies": {
"@types/nodemailer": "^6.4.4",
"base64url": "^3.0.1",
"dotenv": "^10.0.0",
"nodemailer": "^6.6.3",
"pg": "^8.7.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@types/node": "^16.9.1",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"concurrently": "^6.2.1",
"enquirer": "^2.3.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-regexp": "^1.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^4.12.2",
"husky": "^7.0.2",
"hygen": "^6.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"serve": "^12.0.1",
"sort-package-json": "^1.51.0"
},
"engines": {
"node": ">=14",
"yarn": ">=1.2"
}
}