-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.09 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
{
"name": "developer-titles",
"version": "0.0.2",
"description": "Fictional developer titles",
"main": "",
"scripts": {
"test": "jest",
"start": "webpack-dev-server",
"prebuild": "cp ./README.md ./public && cp ./CNAME ./public",
"build": "webpack",
"prepare": "husky install",
"format": "prettier --write \"**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlozovei/developer-titles.git"
},
"author": "Julio Lozovei <[email protected]> (https://jlozovei.dev)",
"homepage": "https://github.com/jlozovei/developer-titles#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlozovei/developer-titles/issues"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"autoprefixer": "^9.6.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^8.0.3",
"jest": "^27.2.5",
"lint-staged": "^13.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"precss": "^4.0.0",
"rucksack-css": "^1.0.2"
},
"lint-staged": {
"src/**/*.{js,css}": [
"npm run format"
],
"*.js": "eslint --cache --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"rules": {},
"env": {
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
}
}
}