-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 860 Bytes
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
{
"private": true,
"scripts": {
"start": "nodemon --exec \"npm run build:dev\" --ignore build --ext ts,tsx,json,html",
"build:dev": "rm -rf build/ && cp -r assets/ build/ && tsc --noEmit && parcel build src/popup/popup.html --dist-dir build --no-source-maps --no-optimize",
"build": "rm -rf build/ && cp -r assets/ build/ && tsc --noEmit && parcel build src/popup/popup.html --dist-dir build --no-source-maps",
"test": "jest --watch",
"test:ci": "jest --collect-coverage"
},
"devDependencies": {
"@types/chrome": "^0.0.180",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.4",
"parcel": "^2.4.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}