-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
{
"name": "@saravieira/css-to-js",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=12"
},
"dependencies": {
"@babel/code-frame": "^7.8.3",
"@babel/parser": "^7.9.6",
"@babel/types": "^7.9.6",
"@feedback-fish/react": "^1.2.1",
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@reach/router": "^1.3.3",
"@testing-library/jest-dom": "^5.2.0",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/babel__code-frame": "^7.0.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@types/prettier": "^2.0.0",
"@types/reach__router": "^1.3.1",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"babel-preset-react-app": "^9.1.2",
"cross-env": "^7.0.2",
"eslint-plugin-testing-library": "^2.2.3",
"netlify-lambda": "^1.6.3",
"normalize.css": "^8.0.1",
"prettier": "^2.0.5",
"prism-react-renderer": "^1.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0",
"react-simple-code-editor": "^0.11.0",
"react-use-clipboard": "^1.0.0",
"styled-components": "^5.0.1",
"typescript": "^3.8.3"
},
"scripts": {
"build:app": "react-scripts build",
"build:functions": "cross-env NODE_ENV=production netlify-lambda build functions",
"build": "npm run build:app && npm run build:functions",
"check-types": "tsc",
"lint": "eslint src --ext js,ts,tsx",
"start": "react-scripts start",
"test": "react-scripts test",
"coverage": "yarn test --coverage --watchAll=false",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:testing-library/react"
],
"plugins": [
"testing-library"
]
},
"prettier": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "MIT"
}