-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.34 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
{
"name": "stack-overflow-indentation",
"version": "0.2.0",
"description": "A browser extension that enables rich IDE-like tabbing/shift-tabbing indentation on Stack Overflow and Meta Stack Overflow.",
"scripts": {
"build-v3": "tsc && rimraf -rf ./dist-v3 && parcel build manifest-v3/manifest.json --dist-dir dist-v3 --config @parcel/config-webextension",
"build-v2": "tsc && rimraf -rf ./dist-v2 && parcel build manifest-v2/manifest.json --dist-dir dist-v2 --config @parcel/config-webextension",
"watch-v2": "rimraf -rf ./dev-dist-v2 && parcel watch manifest-v2/manifest.json --dist-dir dev-dist-v2 --config @parcel/config-webextension"
},
"author": "NathanC",
"license": "MIT",
"private": true,
"devDependencies": {
"@parcel/config-webextension": "^2.7.0",
"@parcel/transformer-sass": "^2.7.0",
"@parcel/validator-typescript": "^2.7.0",
"@types/chrome": "^0.0.197",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"eslint": "^8.25.0",
"parcel": "^2.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"web-ext": "^7.3.0",
"@types/firefox-webext-browser": "^94.0.1"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}