-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.79 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
{
"name": "next-boilerplate",
"version": "1.0.0",
"description": "",
"author": "Godwin Kimani",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "next dev --port 3001",
"build": "next build",
"build:desktop": "npm run tauri build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"tauri": "tauri",
"sync": "npx cap sync",
"e2e": "start-server-and-test dev http://localhost:3001 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3001 \"cypress run --e2e\"",
"e2e:coverage": "npx nyc report --reporter=text-summary",
"commit": "commit"
},
"dependencies": {
"@capacitor/android": "5.5.1",
"@capacitor/camera": "5.0.7",
"@capacitor/core": "5.5.1",
"@capacitor/ios": "5.5.1",
"@reduxjs/toolkit": "1.9.7",
"firebase": "8.10.1",
"formik": "2.2.9",
"next": "14.0.0",
"next-sitemap": "4.2.3",
"node-polyglot": "2.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.3"
},
"devDependencies": {
"@capacitor/cli": "5.5.1",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@commitlint/prompt-cli": "18.4.3",
"@cypress/code-coverage": "3.12.11",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tauri-apps/cli": "1.5.6",
"@types/node": "20.8.9",
"@types/node-polyglot": "2.4.4",
"@types/react": "18.2.33",
"cheerio": "1.0.0-rc.12",
"cypress": "13.4.0",
"eslint": "8.52.0",
"eslint-config-next": "14.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"prettier": "3.0.3",
"start-server-and-test": "2.0.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.7"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"release": {
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
}
}