-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "easy-clipboard",
"description": "chrome extension for easy copy and pasting",
"version": "2.2.2",
"author": "Jason Xian & Christopher Jiang",
"license": "ISC",
"scripts": {
"dev": "webpack --watch --progess --mode development",
"build": "webpack --watch --progress --mode production"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.12.1",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"clipboard": "^2.0.4",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"svg-inline-loader": "^0.8.0",
"svg-inline-react": "^3.1.0",
"url-loader": "^2.1.0",
"uuid": "^3.3.2",
"webext-redux": "^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.0.0",
"@types/chrome": "0.0.81",
"@types/node": "^11.13.0",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^7.0.5",
"babel-loader": "^8.0.0",
"copy-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^1.1.0",
"prettier": "2.1.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"write-file-webpack-plugin": "^3.4.2"
}
}