-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.73 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
{
"name": "deepcheck-webext",
"version": "1.4.0",
"description": "The internet's missing reputation checker.",
"repository": {
"type": "git",
"url": "git://github.com/dfblue/deepcheck-webext.git"
},
"scripts": {
"webext:dev": "npm run webext:clean; NODE_ENV=development npx webpack --config webpack.config.js --mode=development --devtool=cheap-module-source-map --watch",
"webext:clean": "rm -rf build/",
"webext:version:patch": "node scripts/version.js patch",
"webext:version:minor": "node scripts/version.js minor",
"webext:version:major": "node scripts/version.js major",
"webext:build": "npm run webext:clean && NODE_ENV=production npx webpack --config webpack.config.js --mode=production",
"webext:package": "cd build && zip -r $npm_package_name-$npm_package_version.zip *",
"webext:deploy": "npm run webext:build && npm run webext:package && node scripts/deploy.js build/$npm_package_name-$npm_package_version.zip",
"webext:storybook": "start-storybook -p 6006",
"webext:build-sb": "build-storybook"
},
"author": "Sid",
"license": "UNLICENSED",
"standard": {
"globals": [
"chrome"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-destructuring": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-links": "^5.2.4",
"@storybook/addons": "^5.2.4",
"@storybook/react": "^5.2.4",
"@types/chrome": "0.0.89",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^2.1.1",
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"node-fetch": "^2.6.0",
"now": "^16.4.0",
"simple-git": "^1.126.0",
"style-loader": "^1.0.0",
"webextension-polyfill": "^0.5.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.4.1",
"webpack-extension-reloader": "^1.1.1"
},
"dependencies": {
"@primer/octicons-react": "^9.2.0",
"core-js": "^3.2.1",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"regenerator-runtime": "^0.13.3",
"styled-components": "^4.4.0",
"uuid": "^3.3.3"
}
}