-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
{
"name": "next-calorie",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:fix": "eslint . --fix --ext .js,.ts,.tsx",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(json|yml)\"",
"format": "yarn prettier --write",
"type-check": "tsc -p tsconfig.json --noEmit",
"validate": "yarn lint; yarn prettier --list-different; yarn type-check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"modern-normalize": "^1.0.0",
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tachyons": "^4.12.0"
},
"version": "3.0.0",
"main": "index.js",
"author": "Mohammed Alrefai",
"license": "MIT",
"description": "Calories Counter (demo) – React app built with Next.js and TypeScript",
"repository": "https://github.com/Alrefai/next-calorie.git",
"private": true,
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/node": "^14.6.2",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.1.1",
"typescript": "^4.0.2"
}
}