-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
38
39
{
"name": "youtube-comments",
"version": "1.0.3",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm -rf dist",
"clean-prod": "rm -rf prod",
"copy": " mkdir dist && cp -R src/manifest.json src/assets dist/",
"copy-prod": " mkdir prod && cp -R src/manifest.json src/assets prod/",
"watch": "parcel watch src/background.js src/popup/index.html src/content/content-script.js --no-hmr --dist-dir dist/",
"serve": "yarn clean && yarn copy && yarn watch",
"prod": "yarn clean-prod && yarn copy-prod && parcel build --no-source-maps src/background.js src/popup/index.html src/content/content-script.js --dist-dir prod/",
"test": "jest"
},
"dependencies": {
"@types/chrome": "^0.0.135",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.1",
"baseui": "^9.112.0",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"styletron-engine-atomic": "^1.4.7",
"styletron-react": "^6.0.1"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"jest": "^26.6.3",
"parcel": "^2.0.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}