forked from tilap/craco-sass-resources-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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": "@little-core-labs/craco-sass-resources-loader",
"version": "1.1.2",
"description": "A craco plugin to use sass-resources-loader with create-react-app",
"repository": "github:little-core-labs/craco-sass-resources-loader",
"main": "index.js",
"author": "Caleb Rosario",
"license": "MIT",
"scripts": {
"release": "standard-version && git push --follow-tags && npm publish"
},
"keywords": [
"craco",
"create-react-app",
"react",
"webpack",
"sass",
"sass-resources-loader"
],
"devDependencies": {
"@craco/craco": "*",
"commitlint": "^7.5.2",
"eslint": "5.6.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.3",
"react-scripts": "^4.0.3",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"@craco/craco": "*",
"react-scripts": "^4.0.3"
},
"dependencies": {
"sass-resources-loader": "^2.0.0"
},
"lint-staged": {
"index.js": [
"eslint --quiet --fix",
"git add"
]
}
}