-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1015 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
{
"name": "bank-account-ui",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/adnanfajlur/bank-account-ui.git",
"author": "adnanfajlur <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "yarn build && yarn export && firebase deploy"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"classnames": "^2.2.6",
"faker": "^4.1.0",
"formik": "^1.5.4",
"linaria": "^1.3.1",
"next": "^8.1.0",
"next-offline": "^3.4.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"yup": "^0.27.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-transform-optional-chaining": "^7.0.0-beta.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0"
}
}