forked from DocSpring/craco-less
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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": "craco-less",
"version": "1.20.0",
"description": "A Less plugin for craco / react-scripts / create-react-app",
"main": "lib/craco-less.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint --fix \"**/*.{js,ts}\"",
"format": "prettier --write \"**/*.{js,ts,json,yml,md}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/DocSpring/craco-less.git"
},
"keywords": [
"craco",
"create-react-app"
],
"author": "Nathan Broadbent",
"license": "MIT",
"bugs": {
"url": "https://github.com/DocSpring/craco-less/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/DocSpring/craco-less#readme",
"devDependencies": {
"@craco/craco": "^6.4.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"react-scripts-v4": "npm:react-scripts@^4.0.3",
"react-scripts-v5": "npm:react-scripts@^5.0.0"
},
"dependencies": {
"less": "^4.1.2",
"less-loader": "^7.3.0"
},
"peerDependencies": {
"@craco/craco": "^6.0.0",
"react-scripts": "^4.0.0 || ^5.0.0"
},
"lint-staged": {
"**/*.{js,ts,json,yml,md}": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint --fix"
]
}
}