-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
{
"name": "app-template",
"private": true,
"description": "Rookwood pottery interactive",
"version": "1.0.0",
"author": "@scimusmn",
"dependencies": {
"@react-three/drei": "^9.5.3",
"@react-three/fiber": "^8.0.12",
"@ungap/structured-clone": "^1.0.1",
"bootstrap": "^5.1.3",
"chroma-js": "^2.4.2",
"dotenv": "^14.3.2",
"gatsby": "^4.6.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-filesystem": "^4.2.0",
"gatsby-transformer-sharp": "^4.2.0",
"gsap": "^3.10.4",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-bootstrap": "^2.4.0",
"react-countdown-circle-timer": "^3.0.9",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-idle-timer": "^5.4.0",
"three": "^0.139.2",
"use-interval": "^1.4.0",
"use-local-storage": "^2.3.6"
},
"devDependencies": {
"chalk": "^4.1.2",
"contentful-management": "^9.0.0",
"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",
"depcheck": "node -r esm scripts/depcheck.js",
"develop": "gatsby develop --port 3000",
"export-space": "node scripts/contentful/export-space.js",
"populate-space": "node scripts/contentful/populate-space.js",
"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"
}
}