forked from room-js/chrome-extension-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "chrome-extension-ts-starter",
"version": "1.0.0",
"description": "Chrome Extension starter built with TypeScript and Parcel",
"scripts": {
"build": "parcel build src/content/index.ts --dist-dir dist/content --no-source-maps",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@parcel/transformer-vue": "^2.7.0",
"@types/chrome": "^0.0.197",
"@types/jest": "^29.1.1",
"@types/node": "^18.8.2",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vue/component-compiler-utils": "^3.3.0",
"babel-jest": "^29.1.2",
"buffer": "^6.0.3",
"copyfiles": "^2.4.1",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.1.2",
"parcel": "^2.7.0",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@vespaiach/axios-fetch-adapter": "^0.3.1",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"vue": "^3.2.40"
}
}