-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "power-web",
"version": "0.1.8",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"release": "npx standard-version && git push --follow-tags origin main",
"release:alpha": "npx standard-version --prerelease alpha && git push --follow-tags origin main",
"test": "echo \"No test specified\" && exit 0",
"e2e": "playwright test"
},
"dependencies": {
"next": "14.2.35",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@playwright/test": "^1.28.0",
"@types/node": "20.19.37",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"autoprefixer": "10.4.22",
"eslint": "8.57.1",
"eslint-config-next": "14.2.33",
"husky": "8.0.3",
"postcss": "8.5.6",
"prettier": "3.6.2",
"start-server-and-test": "2.1.3",
"tailwindcss": "3.4.18",
"typescript": "4.9.5"
}
}