-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1016 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
{
"homepage": "https://synx.ai",
"name": "synx-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"postbuild": "next-sitemap",
"replaceFilePaths": "node replacer.js",
"dev": "next dev",
"build": "next build && next export -o build && npm run replaceFilePaths",
"start": "next start",
"export": "next export -o build && npm run replaceFilePaths",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@types/react": "^17.0.13",
"autoprefixer": "^10.2.6",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"next-sitemap": "^1.6.173",
"postcss": "^8.3.5",
"prettier": "^2.7.1",
"replace-in-file": "^6.3.1",
"tailwindcss": "^2.2.4",
"typescript": "^4.3.5"
}
}