-
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.23 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.23 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": "devfractal-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"formik": "1.5.8",
"fp-ts": "2.0.3",
"io-ts": "2.0.1",
"io-ts-types": "0.5.0",
"monocle-ts": "2.0.0",
"react": "16.8.6",
"react-datepicker": "2.8.0",
"react-dom": "16.8.6",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"tcomb": "^3.2.29",
"technoidentity-devfractal": "1.2.3",
"technoidentity-utils": "1.2.3",
"yup": "0.27.0"
},
"devDependencies": {
"@testing-library/jest-dom": "4.0.0",
"@types/chance": "1.0.5",
"@types/jest": "24.0.17",
"@types/node": "12.6.9",
"@types/react": "16.8.24",
"@types/react-dom": "16.8.5",
"@types/react-router-dom": "4.3.4",
"@types/yup": "0.26.22",
"chance": "1.0.18",
"cross-env": "5.2.0",
"husky": "3.0.2",
"jest": "24.8.0",
"json-server": "0.15.0",
"lint-staged": "9.2.1",
"parcel-bundler": "1.12.3",
"prettier": "1.18.2",
"react-testing-library": "8.0.1",
"rimraf": "2.6.3",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "6.0.1",
"tslint-react": "4.0.0",
"typescript": "3.5.3",
"typescript-tslint-plugin": "0.5.4"
},
"scripts": {
"start": "parcel index.html --open",
"server": "json-server data/todos.json",
"build": "parcel build index.html",
"clean": "rimraf dist .cache",
"test": "cross-env NODE_EN='test' jest",
"test:watch": "yarn test --watch",
"lint": "yarn tslint -p . 'src/**/*.tsx' 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"types": "tsc --noEmit -p .",
"types:watch": "yarn types --watch",
"validate": "yarn lint:fix && yarn types && yarn test",
"validate:noFix": "yarn lint && yarn types && yarn test"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn validate:noFix"
}
},
"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"
]
}