-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.76 KB
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
{
"name": "webchanneldev",
"version": "1.6.0",
"keywords": [
"react",
"starter kit",
"website"
],
"description": "WebChannel.DEV is the react website starting kit.",
"private": true,
"license": "UNLICENSED",
"author": "https://github.com/AJ-7885",
"homepage": "https://webchannel.dev/",
"scripts": {
"postversion": "yarn publish --tag=next",
"postpublish": "git push origin --all; git push origin --tags",
"preversion": "yarn test",
"start": "react-scripts start",
"start:https": "HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --coverage --watchAll=false --bail=1 --collectCoverageFrom=src/**/*.{js,jsx,ts,tsx} --collectCoverageFrom=!src/**/*.{data,story,style}.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix && prettier './src/**/*.{js,jsx,json,css}' --write ."
},
"engines": {
"node": ">12.16.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"webchannel"
]
},
"prettier": "prettier-config-webchannel",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn lint:fix",
"yarn test",
"git add"
]
},
"dependencies": {
"polished": "^4.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-webchannel": "0.1.3",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prettier-config-webchannel": "^0.1.2",
"stylelint": "^13.9.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
}
}