-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "pool-of-thrones",
"version": "0.1.0",
"private": true,
"license": "MIT",
"homepage": "https://henrymyers.github.io/pool-of-thrones",
"dependencies": {
"@types/jest": "24.0.11",
"@types/materialize-css": "^1.0.6",
"@types/node": "11.13.5",
"@types/react": "16.8.13",
"@types/react-dom": "16.8.4",
"gh-pages": "^2.0.1",
"materialize-css": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-materialize": "^3.1.0",
"react-scripts": "2.1.8",
"typescript": "3.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"eslint-config-landr": "^0.0.4",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prettier-config-landr": "^0.0.2",
"stylelint": "^9.2.0",
"stylelint-config-landr": "^0.0.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.1.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --quiet --fix",
"git add"
],
"*.{json,md,scss,html}": [
"prettier --write",
"git add"
],
"*.scss": "stylelint"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix && tsc --noEmit",
"stylelint": "npx stylelint \"**/*.scss\"",
"format": "prettier --config ./.prettierrc.js --write \"*/**/*\""
},
"eslintConfig": {
"extends": "landr"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}