forked from softvar/enhanced-github
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
126 lines (126 loc) · 3.79 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "turbo-src",
"version": "0.0.1",
"description": "Add-ons for GitHub website - Repo size, Download File, display size of each file and Copy file contents",
"main": "src/inject.js",
"scripts": {
"start": "node server",
"devLocal": "TSRC_EXT_NODE_ENV=devLocal node generate-config.js && NODE_ENV=development BABEL_ENV=development webpack --watch --mode=development",
"devLocalRouter": "TSRC_EXT_NODE_ENV=devLocalRouter node generate-config.js && NODE_ENV=development BABEL_ENV=development webpack --watch --mode=development",
"devLocalTest": "TEST=true npm run devLocal & npm start & npx cypress open",
"devOnline": "TSRC_EXT_NODE_ENV=devOnline node generate-config.js && NODE_ENV=development BABEL_ENV=development webpack --watch --mode=development",
"prod": "ODE_ENV=production BABEL_ENV=production webpack --mode=production",
"lint": "eslint '**/*.js' --fix",
"prettier": "./node_modules/prettier/bin-prettier.js --write",
"test:dev": "jest --config=jest.config.js --watch --debug --colors --errorOnDeprecated",
"test": "jest --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turbo-src/extension.git"
},
"author": "turbo-src",
"license": "MIT",
"bugs": {
"url": "https://github.com/softvar/turbo-src/extension/issues"
},
"homepage": "https://github.com/turbo-src/extension#readme",
"keywords": [
"extension",
"github",
"turbo-src",
"tokens",
"vote"
],
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.13.2",
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"bootstrap": "5.1.3",
"clipboard": "^2.0.6",
"cypress": "^12.17.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"graphql": "^16.0.1",
"graphql-ws": "^5.5.5",
"https": "^1.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"namor": "^2.0.3",
"node-fetch": "^2.6.7",
"npm": "^9.6.7",
"octokit": "^2.0.7",
"react": "^17.0.2",
"react-bootstrap": "^2.1.0",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.5",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-login-github": "^1.0.8",
"react-redux": "^7.2.6",
"react-router-dom": "^6.3.0",
"react-scripts": "^4.0.3",
"react-table": "^7.7.0",
"react-window": "^1.8.6",
"socket.io-client": "^4.6.1",
"styled-components": "^5.3.10",
"superagent": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-syntax-jsx": "^7.16.0",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "5.2.7",
"dotenv-webpack": "^7.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"style-loader": "2.0.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.9",
"webpack-zip-files-plugin": "^1.0.0"
},
"husky": {
"hooks": {
"pre-push": ""
}
},
"lint-staged": {
"globOptions": {
"matchBase": false
},
"linters": {
"**/*.js": [
"prettier",
"git add"
],
"**/*.{json,md}": [
"prettier",
"git add"
]
}
},
"engineStrict": true,
"engines": {
"node": ">= 10.16.0"
}
}