generated from scimusmn/app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
{
"name": "app-template",
"private": true,
"description": "Basic template for starting a new kiosk or web project",
"version": "1.0.0",
"author": "@scimusmn",
"dependencies": {
"@react-three/drei": "^9.111.2",
"@react-three/fiber": "^8.17.5",
"@types/three": "^0.167.1",
"dotenv": "^16.3.1",
"gatsby": "^5.12.3",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-source-contentful": "8.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"three": "^0.167.1"
},
"devDependencies": {
"@react-three/eslint-plugin": "^0.1.1",
"chalk": "4.1.2",
"contentful-management": "10.43.0",
"depcheck": "^1.4.5",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-webpack-plugin": "^3.1.1",
"esm": "^3.2.25",
"gatsby-plugin-eslint": "^4.0.4",
"husky": "^4.3.0",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"sort-package-json": "^1.44.0",
"stylelint": "^14.3.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"license": "MIT",
"scripts": {
"build": "gatsby clean && gatsby build",
"clean": "gatsby clean",
"depcheck": "node -r esm scripts/depcheck.js",
"develop": "gatsby develop --port 3000",
"install:arduino-base": "node scripts/install-arduino-base.js",
"install:contentful": "node -r esm scripts/contentful/install-contentful.js && node -r esm scripts/contentful/autogenerate-pages.js",
"lint": "npm-run-all lint:*",
"lint:code": "node_modules/.bin/eslint .",
"lint:style": "node_modules/.bin/stylelint \"**/*.*css\"",
"serve": "gatsby serve --port 3000"
}
}