-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.19 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
{
"name": "smarthead-landing",
"version": "0.1.0",
"description": "",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "gatsby develop",
"start:ru": "GATSBY_ACTIVE_ENV=ru gatsby develop -H 0.0.0.0",
"start:en": "GATSBY_ACTIVE_ENV=en gatsby develop -H 0.0.0.0",
"build": "gatsby build",
"build:ru": "GATSBY_ACTIVE_ENV=ru gatsby build",
"build:en": "GATSBY_ACTIVE_ENV=en gatsby build",
"build:development": "",
"build:stage": "",
"build:production": "",
"develop": "gatsby develop",
"serve": "gatsby serve -H 0.0.0.0",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:css",
"lint:fix": "npm run lint:css:fix",
"lint:css": "stylelint --quiet --cache --allow-empty-input \"src/**/*.{css,scss}\"",
"lint:css:fix": "stylelint --quiet --cache --allow-empty-input --fix --config .stylelintrc-extended \"src/**/*.{css,scss}\""
},
"dependencies": {
"@types/fontfaceobserver": "^2.1.0",
"bezier-easing": "^2.1.0",
"classnames": "^2.3.2",
"fontfaceobserver": "^2.3.0",
"gatsby": "^4.15.0",
"gatsby-plugin-google-tagmanager": "^4.19.0",
"gatsby-plugin-manifest": "^4.15.0",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sass": "^5.15.0",
"gatsby-plugin-static-folders": "^1.0.1",
"gsap": "^3.10.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"sass": "^1.52.1",
"swiper": "^8.3.2"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/react-helmet": "^6.1.5",
"gatsby-plugin-tsconfig-paths": "^1.0.6",
"prettier": "^2.7.1",
"stylelint": "^14.8.5",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^4.6.4"
}
}