-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 941 Bytes
/
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
{
"name": "gatsby-plugin-sass-resources",
"version": "3.0.1",
"author": "Darpan Kakadia <[email protected]>",
"bugs": {
"url": "https://github.com/kakadiadarpan/gatsby-plugin-sass-resources/issues"
},
"description": "SASS resources (e.g. variables, mixins etc.) plugin for Gatsby",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0",
"webpack": "^5.0.0",
"sass-resources-loader": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/cli": "^7.0.0",
"cross-env": "^5.0.5"
},
"peerDependencies": {
"gatsby": "^4.0.0"
},
"readme": "README.md",
"keywords": [
"gatsby",
"gatsby-plugin",
"sass",
"scss",
"sass-resources",
"scss-resources"
],
"scripts": {
"build": "babel src --out-dir .",
"prepublish": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir ."
}
}