-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.62 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
{
"name": "forge",
"version": "0.1.0",
"description": "An empowering web starter kit designed for building reliable, efficient, and scalable software",
"keywords": [
"boilerplate",
"starter-kit"
],
"homepage": "https://github.com/ajtorres9/forge#readme",
"bugs": "https://github.com/ajtorres9/forge/issues",
"license": "MIT",
"author": "Andrew Torres <[email protected]> (https://andrewjtorr.es)",
"repository": {
"type": "git",
"url": "git+https://github.com/ajtorres9/forge.git"
},
"scripts": {
"hook:pre-commit": "lint-staged",
"lint": "npm-run-all --parallel \"lint:*\"",
"lint:files": "prettylint \"**/*.{json,md,yml}\"",
"lint:scripts": "eslint \"**/*.js\"",
"lint:workspaces": "lerna run --stream lint",
"prepare": "husky install",
"test": "npm-run-all --parallel \"test:*\"",
"test:workspaces": "lerna run --stream test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.56.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-formatjs": "^4.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-unicorn": "^43.0.2",
"husky": "^8.0.1",
"lerna": "^5.5.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-toml": "^0.3.1",
"prettylint": "^1.0.0",
"stylelint": "^14.12.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.8.3"
},
"dependenciesMeta": {
"core-js-pure": {
"built": false
},
"husky": {
"built": false
}
},
"engines": {
"node": ">=16.13",
"yarn": ">=1.22"
},
"private": true,
"workspaces": [
"packages/*"
],
"lint-staged": {
"!(packages/**)*.js": [
"eslint --fix"
],
"!(packages/**)*.{json,md,yml}": [
"prettylint --fix"
]
}
}