-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·159 lines (159 loc) · 4.2 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@interweb-alchemy/work-with-me",
"description": "Psychometric personality profiles for developers to collaborate better.",
"version": "0.1.0",
"private": true,
"author": {
"name": "Eric Allen",
"url": "https://github.com/ericrallen"
},
"license": "MIT",
"repository": {
"url": "https://github.com/InterwebAlchemy/work-with-me"
},
"engines": {
"node": "14",
"npm": "6"
},
"bugs": {
"url": "https://github.com/InterwebAlchemy/work-with-me/issues"
},
"lint-staged": {
"*.(md)": [
"prettier --write"
],
"*.(ts|tsx|js|jsx)": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "Fixing an existing feature",
"title": "Fixes"
},
"chore": {
"description": "Not directly related to feature development",
"title": "Chores"
}
}
}
},
"release": {
"branches": [
"main"
],
"analyzeCommits": {
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "feat",
"release": "minor"
}
]
},
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores",
"hidden": false
}
]
}
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"scripts": {
"build:app": "next build",
"build:types": "openapi-typescript https://$SUPABASE_PROJECT_ID.supabase.co/rest/v1/?apikey=$SUPABASE_ANON_KEY --output ./src/types/supabase.ts",
"commit": "cz",
"commit:retry": "npm run commit -- --retry",
"dev": "npm run dev:next",
"dev:next": "next dev",
"prepare": "is-ci || npm run prepare:local",
"prepare:env": "copyfiles ./.env.example ./.env.local",
"prepare:husky": "husky install",
"prepare:local": "npm run prepare:env && npm run prepare:husky && mnpm run prepare:supabase",
"prepare:supabase": "npm run supabase:init",
"start": "next start",
"supabase:init": "supabase init",
"test": "npm run test:eslint && npm run test:tsc",
"test:eslint": "eslint",
"test:tsc": "tsc -p ./ --noEmit"
},
"dependencies": {
"@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@octokit/types": "^6.34.0",
"@supabase/supabase-js": "^1.29.4",
"@supabase/ui": "^0.36.3",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"eslint": "^7.32.0",
"framer-motion": "^5.6.0",
"humps": "^2.0.1",
"next": "12.0.10",
"prettier": "^2.5.1",
"querystring": "^0.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/cors": "^2.8.12",
"@types/humps": "^2.0.1",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^5.10.2",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^12.3.3",
"openapi-typescript": "^5.1.1",
"typescript": "^4.5.5"
}
}