This repository was archived by the owner on May 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.31 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
{
"name": "react-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.4.0",
"@types/jest": "24.0.25",
"@types/node": "13.1.1",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/yup": "0.26.27",
"axios": "0.19.0",
"cross-env": "6.0.3",
"date-fns": "2.8.1",
"fp-ts": "2.3.1",
"husky": "3.1.0",
"io-ts": "2.0.2",
"io-ts-types": "0.5.3",
"lint-staged": "9.5.0",
"monocle-ts": "2.0.0",
"parcel-bundler": "1.12.4",
"prettier": "1.19.1",
"react": "16.12.0",
"react-docgen-typescript": "1.16.1",
"react-dom": "16.12.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-scripts": "3.3.0",
"react-styleguidist": "10.3.2",
"rimraf": "3.0.0",
"tcomb": "3.2.29",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "6.0.1",
"tslint-react": "4.1.0",
"typescript": "3.7.4",
"typescript-tslint-plugin": "0.5.5",
"yup": "0.28.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"pstart": "parcel index.html --open",
"pbuild": "parcel build index.html",
"test": "react-scripts test",
"destroy": "git clean -dfx",
"up": "ncu -u",
"test:single": "CI=true react-scripts test",
"lint": "yarn tslint -p . -c tslint.json 'src/**/*.tsx' 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"types": "tsc --noEmit -p .",
"types:watch": "yarn types --watch",
"validate:noFix": "yarn lint && yarn types && yarn test:single",
"validate": "yarn lint:fix && yarn types && yarn test:single",
"sg": "styleguidist server",
"sg:build": "styleguidist build",
"all": "yarn validate && yarn start",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn validate:noFix",
"pre-build": "yarn validate"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint:fix",
"git add"
],
"src/**/*.{ts,tsx,js,jsx,json,css}": [
"yarn prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}