This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
{
"name": "@wavevision/coding-standard",
"version": "6.0.2",
"description": "The Wavevision SCSS and TypeScript coding standard.",
"files": [
"phpstorm",
"scss",
"ts",
"yarn.lock"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/coding-standard.git"
},
"author": "Wavevision s.r.o <info@wavevision.com>",
"contributors": [
{
"name": "Jakub Filla",
"email": "jakub.filla@wavevision.com"
},
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wavevision/coding-standard/issues"
},
"homepage": "https://github.com/wavevision/coding-standard",
"dependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-react-constant-elements": "^7.6.3",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.12.0",
"@babel/runtime": "^7.12.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"autoprefixer": "^10.0.1",
"core-js": "3.6.5",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"postcss": "^8.1.1",
"postcss-bem-linter": "^3.3.0",
"postcss-reporter": "^7.0.1",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"babel-jest": "^26.5.2",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.3",
"npm-run-all": "^4.1.5"
},
"peerDependencies": {
"babel-jest": "^26",
"eslint-plugin-jest": "^24",
"jest": "^26"
},
"scripts": {
"eslint": "eslint --fix ./scss ./ts",
"fix": "run-s ts eslint prettier",
"postversion": "git push --tags && yarn publish --access public --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"prettier": "prettier --write './**/*.{js,json,md,ts}'",
"preversion": "yarn fix",
"ts": "tsc"
}
}