-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "tabmom",
"version": "0.1.0.1",
"description": "A chrome extension to periodically open tabs",
"main": "index.js",
"author": "keitak",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --watch --mode=development",
"lint": "eslint ./src/ --ext .ts,.tsx",
"lint:fix": "eslint ./src/ --ext .ts,.tsx --fix"
},
"devDependencies": {
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.2.1",
"@types/chrome": "^0.0.86",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"uuid": "^3.3.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
}
}