This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "catalog-profesii",
"version": "0.0.0-development",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"sb": "npm run storybook",
"build-storybook": "build-storybook",
"prepare": "husky install",
"contentful-pull": "node scripts/contentful.js pull",
"contentful-push": "node scripts/contentful.js push",
"codegen": "graphql-codegen -r dotenv/config --config codegen.yml",
"semantic-release": "semantic-release"
},
"dependencies": {
"@apollo/client": "^3.4.15",
"@tailwindcss/aspect-ratio": "^0.3.0",
"clsx": "^1.1.1",
"graphql": "^15.6.0",
"next": "^12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.21.7",
"@graphql-codegen/fragment-matcher": "2.0.1",
"@graphql-codegen/near-operation-file-preset": "^1.18.6",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-operations": "1.18.4",
"@graphql-codegen/typescript-react-apollo": "2.3.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.12",
"@types/react": "17.0.13",
"@types/tailwindcss": "^2.2.3",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"chromatic": "^5.10.2",
"contentful-export": "^7.13.20",
"contentful-import": "^8.2.13",
"dotenv": "^10.0.0",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"semantic-release": "^17.4.7",
"tailwindcss": "^2.2.19",
"typescript": "4.3.5"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{js,ts,jsx,tsx,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git@github.com:code4moldova/catalog-profesii.git"
},
"release": {
"branches": [
"production",
{
"name": "next",
"prerelease": "alpha"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
}
}