-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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": "nextjs-ecommerce-store",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"migrate": "ley --require tsx/cjs"
},
"dependencies": {
"@fontsource-variable/nunito": "^5.0.17",
"@upleveled/ley": "^0.8.5",
"dotenv-safe": "^9.0.0",
"next": "14.1.0",
"postgres": "^3.4.3",
"react": "^18",
"react-dom": "^18",
"sass": "^1.70.0",
"secure-json-parse": "^2.7.0",
"sharp": "^0.33.2",
"tsx": "^4.7.0"
},
"devDependencies": {
"@playwright/test": "^1.43.0",
"@types/dotenv-safe": "^8.1.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint-config-upleveled": "^7.8.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-embed": "^0.4.14",
"prettier-plugin-sql": "^0.18.0",
"stylelint": "^16.2.0",
"stylelint-config-upleveled": "^1.0.7",
"typescript": "^5"
}
}