-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
{
"repository": {},
"private": true,
"license": "MIT",
"scripts": {
"start": "webpack --watch-stdin --progress --color",
"test": "NODE_OPTIONS='--experimental-modules' tape -r esm 'tests/**/*.test.js' | tap-spec",
"clean": "rm -rf dist && rm -f extension.zip",
"pack": "zip -r extension.zip ./dist",
"build:dist": "yarn run clean && NODE_ENV=production webpack --bail",
"release": "yarn run build:dist && yarn run pack"
},
"resolutions": {
"upath": "^1.1.0",
"lodash-es": "^4.17.15",
"lodash": "^4.17.15",
"chokidar": "^3.0.2"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-solid": "^5.0.9",
"@fortawesome/react-fontawesome": "^0.0.20",
"lodash-es": "^4.17.15",
"react": "^16.3.0",
"react-dom": "^16.3.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"bulma": "^0.7.0",
"copy-webpack-plugin": "^5.0.4",
"core-js": "3.2.1",
"css-loader": "^3.1.0",
"esm": "^3.2.25",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"upath": "^1.1.0",
"webpack": "^4.30.2",
"webpack-chrome-extension-reloader": "^1.0.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true
}
}