forked from BadwaterBay/labelcopier-frontend-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "labelcopier",
"version": "1.2.0",
"description": "Web app that copies the labels and milestones from one repository to another.",
"author": "Badwater Bay",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/BadwaterBay/labelcopier.git"
},
"homepage": "https://github.com/BadwaterBay/labelcopier",
"bugs": {
"url": "https://github.com/BadwaterBay/labelcopier/issues"
},
"scripts": {
"clean": "rimraf build",
"format": "prettier './**/*.{js,html,md,json,css,scss}' --write",
"lint": "eslint './**/*.js' --fix",
"build:dev": "webpack --watch --mode=development",
"build": "yarn clean && webpack --mode=production",
"test": "jest",
"serve:dev": "browser-sync start -s build -c bs-config.js --single",
"start:dev": "concurrently 'yarn build:dev' 'yarn serve:dev'",
"refresh": "rimraf node_modules && yarn --frozen-lockfile"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,html,md,json,css,scss}": [
"prettier --write"
],
"./**/*.js": [
"eslint --cache --fix"
]
},
"dependencies": {
"@dongskyler/helpers.js": "^0.3.3",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"bootstrap-material-design": "^4.1.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"browser-sync": "^2.26.13",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jquery": "1.5.1",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.3.1"
}
}