-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 803 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 803 Bytes
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
{
"name": "video-capture",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html -d public",
"format-check": "prettier --l \"**\"",
"format": "prettier --write \"**\""
},
"browserslist": [
"last 2 Chrome versions",
"last 1 iOS versions"
],
"cache": {
"strategy": "default",
"swDest": "service-worker.js"
},
"dependencies": {
"@rebass/preset": "^4.0.2",
"emotion": "^10.0.14",
"emotion-theming": "^10.0.14",
"idb": "^4.0.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rebass": "^4.0.2"
},
"devDependencies": {
"now": "^16.1.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-sw-cache": "^0.3.1",
"prettier": "^1.18.2"
}
}