forked from Andiedie/sync-my-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.02 KB
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
{
"name": "sync-my-cookie",
"version": "3.0.0",
"description": "A Chrome extension to synchronize cookies.",
"main": "index.js",
"repository": "git@github.com/ElementumOrg/sync-my-cookie.git",
"author": "elgatito <denis.kuzmenok@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn clean && node ./scripts/copyFiles.js && NODE_ENV=production webpack",
"dev:chrome": "node ./scripts/copyFiles.js && NODE_ENV=production webpack --watch",
"dev:web": "webpack-dev-server",
"clean": "rm -rf build/*",
"lint": "tslint -p ."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/chrome": "^0.0.308",
"@types/lodash": "^4.14.121",
"@types/node": "^11.9.4",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"@types/webpack": "^4.4.24",
"antd": "^3.13.5",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"babel-plugin-lodash": "^3.3.4",
"css-loader": "^2.1.0",
"fs-extra": "^7.0.1",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"kevast": "^0.4.3",
"kevast-chrome": "^0.0.2",
"kevast-encrypt": "^0.1.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.5.0",
"sass": "^1.75.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-textfit": "^1.1.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "4.1.6",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}