forked from nemo-crypto/Next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
44
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development next dev -p 9000",
"build:qa": "NODE_ENV=test next build",
"build:prod": "NODE_ENV=production next build",
"export": "next export",
"start": "next start -p 5000",
"lint": "next lint",
"pm2:start": "yarn && pm2 delete ./pm2.config.js && pm2 start ./pm2.config.js"
},
"dependencies": {
"axios": "^1.2.0",
"bignumber.js": "^9.1.2",
"date-fns": "^2.30.0",
"echarts": "^5.4.3",
"js-cookie": "^3.0.1",
"next": "13.0.4",
"next-translate": "^2.0.6",
"next-translate-plugin": "^2.0.5",
"query-string": "^8.1.0",
"rc-tooltip": "^6.1.2",
"react": "18.2.0",
"react-day-picker": "^8.8.2",
"react-dom": "18.2.0",
"react-html-parser": "^2.0.2",
"react-sparklines": "^1.7.0",
"swiper": "^6.7.5"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"classnames": "^2.3.2",
"eslint": "8.28.0",
"eslint-config-next": "13.0.4",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"sass": "^1.56.1",
"typescript": "4.9.3"
}
}