-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "couchspinner",
"private": true,
"homepage": "https://couchspinner.com",
"dependencies": {
"@sentry/browser": "^6.9.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.8",
"@wordpress/browserslist-config": "^4.0.1",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"gh-pages": "^3.2.3",
"jszip": "^3.6.0",
"lint-staged": "^11.0.0",
"marked": "^4.0.10",
"node-sass": "^4.0.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-json-tree": "^0.15.0",
"react-modal": "^3.14.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3"
},
"devDependencies": {
"husky": "^7.0.1"
},
"scripts": {
"deploy": "sh ./predeploy.sh && gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"extends @wordpress/browserslist-config"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "GPL-3.0-or-later",
"lint-staged": {
"*.{js,json,md,html,scss,yml}": [
"prettier --write"
]
}
}