-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 851 Bytes
/
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
{
"name": "cv",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stylelint": "stylelint \"**/*.css\"",
"stylelint-fix": "stylelint \"**/*.css\" --fix"
},
"dependencies": {
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5"
},
"devDependencies": {
"@types/node": "^18.18.11",
"@types/react": "^18.2.38",
"eslint": "7.32.0",
"eslint-config-next": "^13.5.6",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^5.3.2"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.17.0"
}
}