-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 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
63
64
{
"name": "twreporter-npm-packages",
"version": "1.0.1",
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
"author": "twreporter <developer@twreporter.org>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "make dev",
"test": "make test",
"build": "make build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "make lint && make test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,md,html,htm}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-inline-react-svg": "1.1.0",
"babel-plugin-styled-components": "1.10.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "4.0.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lerna": "^3.19.0",
"lint-staged": "^8.1.5",
"prettier": "1.18.2",
"rimraf": "^2.6.3",
"semver-intersect": "^1.4.0"
}
}