-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
69 lines (69 loc) · 2.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "chrome-extension-ts-starter",
"version": "1.0.0",
"description": "Chrome Extension starter built with TypeScript and Parcel",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"build:bg": "parcel build src/background/index.ts --dist-dir dist/background --no-source-maps",
"build:content": "parcel build src/content/index.ts --dist-dir dist/content --no-source-maps",
"build:options": "parcel build src/options/index.html --dist-dir dist/options --public-url ./ --no-source-maps",
"build:popup": "parcel build src/popup/index.html --dist-dir dist/popup --public-url ./ --no-source-maps",
"build:devtools": "parcel build src/devtools/index.html --dist-dir dist/devtools --public-url ./ --no-source-maps",
"build:devtools:app": "parcel build src/devtools/app/index.html --dist-dir dist/devtools/app --public-url ./ --no-source-maps",
"build": "npm run build:bg && npm run build:content && npm run build:options && npm run build:popup && npm run build:devtools && npm run build:devtools:app",
"clean": "rimraf dist",
"copy:static": "copyfiles manifest.json assets/**/* dist",
"dist": "npm run clean && npm run build && npm run copy:static",
"lint": "eslint --ext .ts,.tsx ./src",
"test": "jest -c ./config/jest.config.js"
},
"author": "Yuri Drabik <yurist38@mail.ru>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-vue": "^2.12.0",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.5",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vue/component-compiler-utils": "^3.3.0",
"babel-jest": "^29.7.0",
"buffer": "^6.0.3",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"rimraf": "^5.0.7",
"sass": "^1.77.6",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@vespaiach/axios-fetch-adapter": "^0.3.1",
"axios": "^0.28.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.11",
"vue": "^3.4.29"
}
}