-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.47 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
42
43
44
45
46
47
48
{
"dependencies": {
"formik": "^2.2.6",
"next": "10.0.5",
"phosphor-react": "^1.1.2",
"polished": "^4.0.5",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-select": "^4.3.0",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-unicorn": "^26.0.1",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"prettier": "2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"puppeteer": "^5.5.0"
},
"license": "ISC",
"name": "commit.dev",
"scripts": {
"build": "next build && next export",
"deploy": "npm run build && git add docs && git commit -m \"Staging deployment @`date +'%Y-%m-%d'`\" && git push origin main",
"dev": "next dev",
"e2e": "jest --config .e2e/jest.config.js",
"format": "prettier-eslint --eslint-config-path ./.eslintrc.js --write $PWD'/**/*.js'",
"lint": "eslint .",
"start": "next start"
},
"version": "0.1.0"
}