-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
37 lines (37 loc) · 1.15 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
36
37
{
"name": "spy-extension",
"version": "2.0.0",
"description": "The most invasive Chrome extension ever",
"scripts": {
"start": "parcel watch src/manifest.json --host localhost --config @parcel/config-webextension --no-content-hash --no-cache",
"build": "parcel build src/manifest.json --config @parcel/config-webextension --no-content-hash --no-cache",
"clean": "rm -r .parcel-cache dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msfrisbie/spy-extension.git"
},
"license": "MIT",
"homepage": "https://github.com/msfrisbie/spy-extension#readme",
"devDependencies": {
"@parcel/config-webextension": "^2.8.3",
"@parcel/transformer-sass": "2.8.3",
"@types/chrome": "^0.0.216",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"parcel": "^2.8.3",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"process": "^0.11.10",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"uuid": "^9.0.0"
}
}