-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 994 Bytes
/
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
{
"name": "productive-cycles-webext",
"version": "0.6.1",
"author": "Diego Serrano",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --watchAll",
"dev": "parcel watch ./src/manifest.json --hmr-hostname localhost",
"build": "parcel build ./src/manifest.json",
"start:firefox": "web-ext run --source-dir ./dist",
"start:chrome": "web-ext run --source-dir ./dist --target chromium"
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.13.12",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"jest": "^26.6.3",
"jest-chrome": "^0.7.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-nuke-dist": "^1.0.1",
"parcel-plugin-web-extension": "^1.6.1",
"regenerator-runtime": "^0.13.7",
"web-ext": "^6.0.0"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
}
}