forked from 10up/component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@10up/component-library",
"private": true,
"author": "10up",
"description": "A library of reusable components from 10up.",
"repository": {
"type": "git",
"url": "git+https://github.com/10up/component-library.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/10up/component-library/issues"
},
"homepage": "https://github.com/10up/component-library#readme",
"scripts": {
"test": "jest --clearCache && lerna run test --stream",
"build": "lerna run build",
"codecov": "curl -s https://codecov.io/bash | bash -s",
"prepare": "lerna bootstrap --hoist",
"reinstall": "lerna clean --yes && npm run prepare"
},
"dependencies": {
"core-js": "^3.8.3"
},
"devDependencies": {
"@10up/babel-preset-default": "^1.1.0",
"@10up/eslint-config": "^2.3.3",
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.14",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js)": [
"eslint"
]
},
"engines": {
"node": ">= 12",
"npm": ">= 7.0.0"
}
}