-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 3.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sheltertech.org",
"version": "1.0.0",
"description": "ShelterTech Info Site",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "gatsby develop",
"build": "gatsby build",
"lint": "npm run stylelint && npm run tsc && npm run eslint",
"lint:fix": "npm run stylelint:fix && npm run tsc && npm run eslint:fix",
"stylelint": "stylelint 'src/**/*.css' '.storybook/**/*.css'",
"stylelint:fix": "stylelint --fix 'src/**/*.css' '.storybook/**/*.css'",
"tsc": "tsc",
"eslint": "eslint --ext=.js,.jsx,.ts,.tsx . .storybook",
"eslint:fix": "eslint --fix --ext=.js,.jsx,.ts,.tsx . .storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "https://github.com/ShelterTechSF/sheltertech.org.git"
},
"author": "Sheltertech.org",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ShelterTechSF/sheltertech.org/issues"
},
"homepage": "https://github.com/ShelterTechSF/sheltertech.org#readme",
"dependencies": {
"gatsby": "^5.12.6",
"gatsby-plugin-image": "^3.12.1",
"gatsby-plugin-prismic-previews": "^6.0.1",
"gatsby-source-prismic": "^6.0.1",
"normalize.css": "^8.0.1",
"prismic-reactjs": "^1.3.4",
"pure-react-carousel": "^1.30.1",
"react": "^18.2.0",
"react-burger-menu": "^3.0.9",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@csstools/postcss-global-data": "^2.1.0",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-storyshots": "^7.4.6",
"@storybook/addon-viewport": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@types/react": "^18.2.22",
"@types/react-burger-menu": "^2.8.3",
"@types/react-dom": "^18.2.7",
"@types/react-modal": "^3.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.0",
"babel-loader": "^8.1.0",
"babel-preset-gatsby": "^0.5.14",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-storybook": "^0.6.14",
"gatsby-plugin-intercom-spa": "^0.2.0",
"gatsby-plugin-manifest": "^5.12.1",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.1",
"gatsby-plugin-ts-checker": "^1.1.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.0",
"postcss-custom-media": "^10.0.2",
"postcss-loader": "^5.3.0",
"prettier": "^2.0.5",
"react-test-renderer": "^18.2.0",
"storybook": "^7.4.6",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.3",
"webpack": "^5.88.2"
}
}