-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.21 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
{
"name": "solid-tech-lk",
"version": "1.0.0",
"private": true,
"description": "Solid Tech LK",
"author": "kaushalyap",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"develop-css": "TAILWIND_MODE=watch postcss -i node_modules/tailwindcss/dis/tailwind.css -o dist/build.css --watch",
"clean-develop": "gatsby clean && gatsby develop",
"build": "gatsby build",
"build-css": "postcss -i node_modules/tailwindcss/dis/tailwind.css -o --minify dist/build.css",
"clean-build": "gatsby clean && gatsby build && gatsby serve",
"build-serve": "gatsby build && gatsby serve",
"serve": "gatsby serve",
"clean": "gatsby clean",
"unit-test": "vitest",
"unit-test-coverage": "vitest run --coverage",
"e2e-test": "playwright test && E2E testing done!",
"test": "yarn unit-test && yarn e2e-test && echo 'Testing done!'",
"prepare": "husky install",
"format": "pretty-quick --staged && echo 'Formatting done!'",
"lint": "eslint --fix --ext .js,.jsx,ts,tsx . && ls-lint && echo 'Linting done!'",
"validate": "yarn format && yarn lint"
},
"dependencies": {
"@builder.io/partytown": "^0.7.0",
"@headlessui/react": "^1.7.2",
"@icons-pack/react-simple-icons": "^4.7.2",
"@prismicio/react": "^2.5.0",
"@reach/router": "^1.3.4",
"@sentry/gatsby": "^6.19.7",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.4.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"gatsby": "^4.24.0",
"gatsby-plugin-image": "^2.24.0",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-page-creator": "^4.24.0",
"gatsby-plugin-postcss": "^5.24.0",
"gatsby-plugin-prismic-previews": "^5.2.10",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sharp": "^4.24.0",
"gatsby-plugin-sitemap": "^5.24.0",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-source-google-spreadsheets": "^3.0.8",
"gatsby-source-prismic": "^5.2.10",
"gatsby-transformer-sharp": "^4.24.0",
"keen-slider": "^6.8.2",
"postcss": "^8.4.16",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.11.2",
"@ls-lint/ls-lint": "^1.11.2",
"@playwright/test": "^1.26.1",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "latest",
"eslint-plugin-tailwindcss": "^1.17.2",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.27",
"husky": "^7.0.4",
"lint-staged": ">=12.1.2",
"postcss-cli": "^9.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.1.8",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^4.8.4",
"vitest": "^0.23.4"
},
"repository": {
"type": "git",
"url": "https://github.com/SolidTechLK/front-end"
}
}