-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
{
"name": "app-template",
"private": true,
"description": "Basic template for starting a new kiosk or web project",
"version": "1.0.0",
"author": "@scimusmn",
"dependencies": {
"dotenv": "^8.2.0",
"gatsby": "^4.2.0",
"gatsby-plugin-image": "^2.2.0",
"gatsby-plugin-manifest": "^4.2.0",
"gatsby-plugin-react-helmet": "^5.2.0",
"gatsby-plugin-sharp": "^4.2.0",
"gatsby-source-contentful": "7.3.2",
"gatsby-source-contentful-locales": "^1.0.3",
"gatsby-source-filesystem": "^4.2.0",
"gatsby-transformer-sharp": "^4.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-idle-timer": "^4.6.4",
"swiper": "6.8.4"
},
"devDependencies": {
"chalk": "^4.1.2",
"contentful-management": "^9.1.1",
"depcheck": "^1.4.3",
"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.2",
"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",
"create-model": "node scripts/run-migration.js ./migrations/create-smm-flipbooks.js",
"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"
}
}