-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.13 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
{
"name": "heliblocks-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.0.1",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@firebase/analytics": "^0.6.2",
"@monaco-editor/react": "^3.7.0",
"@react-hook/media-query": "^1.1.1",
"@stripe/stripe-js": "^1.11.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"algoliasearch": "^4.8.0",
"firebase": "^8.1.1",
"framer-motion": "^2.9.4",
"js-cookie": "^2.2.1",
"lottie-react": "^2.1.0",
"object-sizeof": "^1.6.1",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^17.0.1",
"react-head": "^3.4.0",
"react-instantsearch-dom": "^6.8.2",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-select": "^3.1.1",
"react-simple-resizer": "^2.1.0",
"react-slot-fill": "^2.0.1",
"react-syntax-highlighter": "^15.3.0",
"react-timeago": "^5.2.0",
"use-debounce": "^5.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:deploy": "react-scripts test --watchAll=false --detectOpenHandles --forceExit",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"pretty": "pretty-quick"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^3.4.2",
"husky": "^4.3.0",
"jest-canvas-mock": "^2.3.0",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!react-syntax-highlighter)"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}