-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 927 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": "extension-playground",
"version": "1.0.0",
"description": "Playground environment for building Web Extensions",
"scripts": {
"start": "npx parcel src/index.html",
"build": "rm -rf dist && ./build_workers.sh && npx parcel build src/index.html --no-source-maps"
},
"author": "Oliver Dunk",
"license": "MIT",
"@parcel/transformer-css": {
"cssModules": true
},
"devDependencies": {
"@parcel/transformer-sass": "2.12.0",
"@types/react-dom": "^18.0.5",
"@types/react-modal": "^3.13.1",
"@typescript/vfs": "^1.3.5",
"buffer": "^6.0.3",
"monaco-editor": "0.45.0",
"parcel": "2.12.0",
"prettier": "2.7.1",
"process": "^0.11.10",
"typescript": "^4.7.4"
},
"dependencies": {
"@typescript/sandbox": "0.1.2",
"jszip": "^3.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-modal": "^3.15.1"
}
}