-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.07 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": "with-ant-design",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "npm run build",
"lint": "eslint . --ext js,jsx . --ignore-path ./.eslintignore",
"lint:fix": "eslint --fix . --ignore-path ./.eslintignore"
},
"dependencies": {
"@ant-design/icons": "4.8.0",
"@next/bundle-analyzer": "13.0.7",
"@sendgrid/mail": "7.7.0",
"antd": "5.0.0",
"babel-plugin-import": "1.13.5",
"cross-env": "7.0.3",
"dayjs": "1.11.7",
"esm": "3.2.25",
"next": "13.0.7",
"postcss-preset-env": "7.8.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "7.18.6",
"babel-eslint": "10.1.0",
"eslint": "8.29.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0"
},
"license": "MIT",
"browser": {
"fs": false,
"path": false
}
}