-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1001 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
39
{
"name": "my-pipay",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "npm run build && next export -o _static",
"start": "NODE_ENV=production node server.js",
"lint": "next lint"
},
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "5.0.2",
"chart.js": "^3.5.0",
"image-trace-loader": "^1.0.2",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"jimp": "^0.16.1",
"lqip-loader": "^2.2.1",
"moment": "^2.29.1",
"next": "11.0.1",
"next-optimized-images": "^2.6.2",
"react": "17.0.2",
"react-bootstrap": "^2.0.0-beta.4",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"responsive-loader": "^2.3.0",
"svg-sprite-loader": "^6.0.9",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"eslint": "7.31.0",
"eslint-config-next": "11.0.1"
}
}