-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 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
{
"name": "diet-accountability-app",
"version": "1.0.0",
"description": "App that lets users upload photos of their mealtimes each day to help them stick to a diet",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged --debug",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "npx --no --commitlint --edit ${1}",
"lint": "npm run lint:js && npm run lint:css && npm run format",
"lint:js": "eslint .",
"lint:css": "stylelint './apps/client/src/**/*.styled.tsx'",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@flydotio/dockerfile": "^0.5.0",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"postcss-styled-syntax": "^0.5.0",
"prettier": "^3.0.3",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0"
},
"dependencies": {
"graphql-config": "^5.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}