-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "feather",
"version": "0.1.0",
"description": "The primary front-end repo template for application development. Uses CRA and TypeScript with Eslint, Tslint, Prettier, Jest, and Cypress configurations ready to go!",
"repository": {
"type": "git",
"url": "git+https://github.com/featherweight-design/feather.git"
},
"bugs": {
"url": "https://github.com/featherweight-design/feather/labels/%F0%9F%90%9B%20%20Bug"
},
"author": "Featherweight Design",
"license": "MIT",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "tsc -p tsconfig.build.json && react-scripts build",
"test": "react-scripts test",
"test-ci": "react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"clean": "rm -rf node_modules yarn.lock && yarn install",
"format": "prettier --write \"src/**/*.ts?(x)\"",
"lint": "eslint './src/**/*.{js,ts,tsx,mdx}' --fix",
"lint-ci": "eslint './src/**/*.{js,ts,tsx,mdx}'",
"cy-open": "cypress open",
"cy-run": "cypress run",
"upgrade": "yarn upgrade-interactive --latest"
},
"jest": {
"collectCoverageFrom": [
"./src/**/{components,pages,utilities}/**/*.ts?(x)"
],
"testMatch": [
"./**/__tests__/*.test.ts?(x)"
]
},
"dependencies": {
"@f-design/component-library": "^0.1.57",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.15",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"node-sass": "4.14.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.2",
"typescript": "^4.1.3",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/cypress": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cypress": "^6.2.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn run lint-ci"
}
}
}