-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
86 lines (86 loc) · 2.44 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
{
"name": "gloc",
"version": "8.3.4",
"engines": {
"node": "16.19.0",
"npm": "0.39.3"
},
"description": "Browser extension - counts locs on GitHub pages",
"authors": [
"Kas Elvirov <kas.elvirov@gmail.com> (https://github.com/kas-elvirov)"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/kas-elvirov/gloc/issues"
},
"homepage": "https://github.com/kas-elvirov/gloc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kas-elvirov/gloc.git"
},
"keywords": [
"code",
"counter",
"github",
"sloc"
],
"main": "index.js",
"scripts": {
"pack:prod": "webpack --config webpack.config.prod",
"pack:dev": "webpack --config webpack.config.dev",
"zip": "grunt",
"build:prod": "webpack --config webpack.config.prod && grunt",
"build:dev": "webpack --config webpack.config.dev && grunt",
"version:up": "npm version patch --no-git-tag-version --force && node ./scripts/upAppVersion.js && git add package.json .env manifest.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run version:up"
}
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/styles": "^4.11.4",
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.0",
"is-positive-array": "^1.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@types/chrome": "0.0.81",
"@types/jquery": "^3.3.29",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^6.0.3",
"dotenv-webpack": "^1.8.0",
"envfile": "^6.2.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^1.1.11",
"grunt": "^1.5.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-compress": "^1.4.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.5",
"node-json-minify": "^1.0.0",
"react-iframe": "^1.8.0",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"typescript-tslint-plugin": "^0.3.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.3.0"
}
}