-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
38
39
40
41
42
43
{
"name": "primal-strength",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile:sass": "sass --watch app/_assets/styles/scss:app/_assets/styles/css",
"minify:css": "css-minify -d app/_assets/styles/css -o app/_assets/styles/css"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@fontsource/aclonica": "^5.0.17",
"@fontsource/acme": "^5.0.17",
"@fontsource/josefin-sans": "^5.0.17",
"@fontsource/nunito": "^5.0.15",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.0",
"axios": "^1.6.2",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"css-minify": "^2.0.0",
"dotenv": "^16.3.1",
"font-awesome": "^4.7.0",
"html-react-parser": "^5.0.6",
"moment": "^2.30.1",
"next": "14.0.2",
"postcss-cli": "^9.0.2",
"react": "^18",
"react-dom": "^18",
"sass": "^1.69.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"typescript": "^5"
}
}