-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) Β· 3.07 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@webfrontstudio/studio",
"version": "0.1.0",
"private": true,
"description": "Live website designer and CMS for Webfront Studio websites",
"keywords": [
"cms",
"react",
"website",
"ssg"
],
"homepage": "https://webfront.studio",
"bugs": {
"url": "https://github.com/webfrontstudio/studio/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webfrontstudio/studio.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --verbose",
"coverage": "npm run test -- --coverage",
"lint": "eslint ./",
"prepare": "husky install"
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!src/index.tsx",
"!src/**/*.d.ts",
"!src/service-worker.ts",
"!src/service-worker-registration.ts",
"!src/report-web-vitals.ts"
],
"coverageReporters": [
"text",
"text-summary",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"resetMocks": false
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.0",
"workbox-background-sync": "^6.3.0",
"workbox-broadcast-update": "^6.3.0",
"workbox-cacheable-response": "^6.3.0",
"workbox-core": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-google-analytics": "^6.3.0",
"workbox-navigation-preload": "^6.3.0",
"workbox-precaching": "^6.3.0",
"workbox-range-requests": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0",
"workbox-streams": "^6.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"commitlint": "^13.1.0",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^7.32.0",
"eslint-plugin-evelyn": "^6.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-regexp": "^0.13.2",
"eslint-plugin-unicorn": "^32.0.1",
"husky": "^6.0.0",
"jest-location-mock": "^1.0.9",
"lint-staged": "^11.1.2",
"react-scripts": "4.0.3",
"sass": "^1.41.0",
"sort-package-json": "^1.51.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=16.0.0"
}
}