-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-extension-webpack-typescript-starter",
"version": "1.0.0",
"description": "A simple starter to kickstart your next Chrome extension powered by Typescript and React",
"repository": "https://github.com/Liinkiing/extension-webpack-typescript-starter",
"author": "Omar Jbara <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"webpack",
"typescript",
"template",
"starter",
"boilerplate",
"chrome-extension",
"extension"
],
"scripts": {
"build": "cross-env NODE_ENV=production webpack --colors --config webpack.prod.ts",
"watch": "cross-env NODE_ENV=development webpack --colors --watch --config webpack.dev.ts",
"dev": "concurrently \"yarn react-devtools\" \"yarn watch\""
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/chrome": "^0.0.91",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/html-webpack-plugin": "^3.2.1",
"@types/node": "^12.12.12",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.0",
"@types/webpack": "^4.41.0",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.7.1",
"babel-plugin-styled-components": "^1.10.6",
"copy-webpack-plugin": "^5.0.5",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-react": "^7.16.0",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.0-beta.5",
"lint-staged": "^9.4.3",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"react-devtools": "^4.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.2",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.2",
"webpack": "4.41.0",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"cross-env": "^6.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^4.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,json,md}": [
"prettier --write",
"git add"
],
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}