-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "digital-receptionist",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/enaluz/digital-receptionist.git",
"author": "Ethan Naluz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node server/server.js",
"build": "cd client/ && yarn && yarn build && cd ../server && yarn",
"ngrok": "./ngrok http 8080",
"dev": "source ./env.sh && concurrently --kill-others-on-fail \"nodemon server/server.js\" \"cd client && yarn start\"",
"setup": "yarn && cd client && yarn && cd ../server && yarn",
"release": "standard-version"
},
"engines": {
"node": "12.x"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@typescript-eslint/eslint-plugin": "1.x",
"@typescript-eslint/parser": "1.x",
"babel-eslint": "10.0.2",
"commitizen": "^4.0.3",
"concurrently": "^4.1.0",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.x",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"nodemon": "^1.18.11",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"standard-version": "^7.0.0",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-prettier": "^1.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged",
"git add"
],
"*.{js, jsx}": [
"eslint --fix",
"git add"
],
"*.css": [
"stylelint --aei --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}