-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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": "highbs-bok",
"private": true,
"description": "HIGHBS-BOK.art website source code",
"version": "2.2.0",
"license": "0BSD",
"scripts": {
"build": "npx gatsby build",
"build:script": "npx webpack -c webpack.config.js --mode production",
"bs": "npm run build:script",
"dev": "gatsby develop",
"dev:script": "npx webpack -c webpack.config.js --mode development --watch",
"ds": "npm run dev:script",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run dev",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@types/react-helmet": "^6.1.4",
"bootstrap": "^5.1.3",
"gatsby": "^4.2.0",
"gatsby-plugin-react-helmet": "^5.2.0",
"gatsby-plugin-sass": "^5.2.0",
"gatsby-source-filesystem": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sass": "^1.43.5"
},
"devDependencies": {
"prettier": "2.2.1",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}