-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.88 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
{
"name": "github-defreshed",
"version": "4.4.1",
"namespace": "GitHub",
"displayName": "GitHub Defreshed",
"description": "Classical GitHub at its finest",
"author": "Kir_Antipov",
"githubUser": "Kir-Antipov",
"githubRepo": "GitHub-Defreshed",
"license": "MIT",
"main": "index.js",
"scripts": {
"build:debug": "webpack --mode development",
"build:release": "webpack --mode production",
"build": "npm run build:release",
"test:lint": "eslint src/** && eslint test/**",
"test:unit": "nyc --report-dir=./.nyc_output/coverage --reporter=html mocha test/test-*.* -r tsconfig-paths/register -r test/register",
"test": "npm run test:lint && npm run test:unit"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@primer/octicons-react": "^16.1.1",
"@types/chai": "^4.2.22",
"@types/jsdom": "^16.2.13",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"css-loader": "^6.5.0",
"emit-file-webpack-plugin": "^2.0.1",
"eslint": "^8.1.0",
"eslint-plugin-react": "^7.26.1",
"github-reserved-names": "^2.0.4",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^18.0.0",
"jsx-dom": "^8.0.1-beta.3",
"mini-css-extract-plugin": "^2.4.3",
"mocha": "^9.1.3",
"node-sass": "^6.0.1",
"nyc": "^15.1.0",
"react-svg-loader": "^3.0.3",
"remove-files-webpack-plugin": "^1.4.5",
"sass-loader": "^12.2.0",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {}
}