-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "kda.name",
"version": "2.0.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stylelint": "npx stylelint '**/styles/**/*.css'",
"export": "next export",
"prepare": "husky husky",
"test": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e --browser chrome\"",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e --headless\""
},
"browserslist": [
">0.3%",
"not dead",
"not op_mini all"
],
"dependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.4",
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5",
"typescript": "^5.5.0"
},
"devDependencies": {
"@types/react-transition-group": "^4.4.10",
"cypress": "^13.13.0",
"husky": "^9.0.11",
"start-server-and-test": "^2.0.4",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1"
}
}