-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 963 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
{
"name": "sample-react-parcel-webextension",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rimraf dist",
"start": "nr clean && parcel watch src/manifest.json --host localhost --config @parcel/config-webextension",
"build": "nr clean && parcel build src/manifest.json --config @parcel/config-webextension --no-source-maps",
"build:heavy": "parcel build src/manifest.json --config @parcel/config-webextension"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@antfu/ni": "^0.21.0",
"@parcel/config-webextension": "^2.7.0",
"@parcel/core": "^2.7.0",
"@types/chrome": "^0.0.235",
"@types/firefox": "^0.0.31",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"parcel": "^2.7.0",
"rimraf": "^5.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"alias": {
"process": {
"global": "process"
}
}
}