-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 832 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
{
"name": "eco-consultancy",
"version": "1.0.0",
"private": true,
"description": "eco-consultancy",
"author": "KSM",
"keywords": [
"gatsby"
],
"scripts": {
"build:css": "postcss src/layouts/index.css -o src/layouts/generated.css",
"watch:css": "postcss src/layouts/index.css -o src/layouts/generated.css -w",
"start": "gatsby develop",
"build": "npm run build:css && gatsby build",
"develop": "npm run watch:css & gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"gatsby": "^4.21.0",
"gatsby-plugin-smoothscroll": "^1.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"gatsby-plugin-postcss": "^5.21.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}