-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "researchy-chrome-extension",
"version": "1.0.0",
"description": "Chrome Extension at https://chrome.google.com/webstore/detail/researchy/ngeljggnajfepdokmccoolkjbomnlime for automatic reader mode and key term highlighting for researching. API can be found at https://github.com/kevinlu1248/researchy-api.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "yarn run webpack --watch",
"build": "yarn run webpack",
"create": "python build/zip_extension.py",
"deploy": "yarn run dist/deploy.js & prettier chrome_extension/manifest.json --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinlu1248/researchy-chrome-extension.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevinlu1248/researchy-chrome-extension/issues"
},
"homepage": "https://github.com/kevinlu1248/researchy-chrome-extension#readme",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^3.1.2",
"babel-runtime": "^6.26.0",
"chrome-webstore-upload": "^0.4.2",
"classnames": "^2.2.6",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-frame-component": "^4.1.3",
"react-quill": "^1.3.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.3",
"zip-folder": "^1.0.0"
},
"prettier": {
"tabWidth": 4
},
"stylelint": {
"extends": [
"stylelint-config-idiomatic-order",
"./node_modules/prettier-stylelint/config.js",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-prettier"
],
"rules": {
"prettier/prettier": true
}
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"eslint": "^7.8.1",
"install": "^0.13.0",
"npm": "^6.14.8",
"prettier-stylelint": "^0.4.2",
"webpack-cli": "^3.3.12"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"transform-class-properties"
]
},
"eslintConfig": {
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"semi": [
"error",
"always"
],
"quotes": [
"error",
"double"
]
},
"extends": [
"plugin:prettier/recommended",
"prettier/react"
]
}
}