-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "binary-calculator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "webpack serve",
"build": "webpack",
"postinstall": "ln -s -f ../../git-hooks/pre-commit .git/hooks/pre-commit",
"lint-ts": "eslint . --ext .ts --quiet",
"lint-scss": "stylelint **/*.scss",
"lint-and-fix": "eslint . --ext .ts --quiet --fix && stylelint **/*.scss --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaczor6418/binary-calculator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kaczor6418/binary-calculator/issues"
},
"homepage": "https://github.com/kaczor6418/binary-calculator#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.0.0",
"prettier": "^2.1.2",
"sass": "^1.27.0",
"sass-loader": "^10.0.4",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
}
}