generated from pacexy/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
70
71
72
{
"name": "scrawl",
"version": "0.2.1",
"description": "Draw on any web page with excalidraw.",
"scripts": {
"watch:src": " cross-env NODE_ENV=development webpack",
"start": "concurrently yarn:watch:*",
"build": "cross-env NODE_ENV=production webpack && cd dist && zip -r -9 ../dist.zip *",
"test": "jest",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"postinstall": "patch-package"
},
"author": "",
"license": "MIT",
"dependencies": {
"@excalidraw/excalidraw": "^0.9.0",
"is-hotkey": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.0-rc.2",
"@types/chrome": "0.0.146",
"@types/is-hotkey": "^0.1.3",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"@types/terser-webpack-plugin": "^5.0.4",
"@types/webextension-polyfill": "^0.8.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"dotenv-flow-webpack": "^1.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"patch-package": "^6.4.7",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"react-refresh": "^0.10.0",
"style-loader": "^3.1.0",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webextension-polyfill": "^0.8.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.3"
},
"engines": {
"node": ">=10.0.0"
}
}